Delphi-PRAXiS
Seite 2 von 2     12   

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Sonstige Fragen zu Delphi (https://www.delphipraxis.net/19-sonstige-fragen-zu-delphi/)
-   -   Delphi c code nach delphi (https://www.delphipraxis.net/41569-c-code-nach-delphi.html)

MatthiasW 5. Mär 2005 14:14

Re: c code nach delphi
 
ne, das ist in beiden Zeilen dasselbe: sobald ich versuche den Wert abzufragen kommt ein Fehler das zu viele Exeptions aufgetreten sind

also
Delphi-Quellcode:
IconData := PNOTIFYICONDATA(((PByte(cpData^.lpData))^+8));
iTrayCommand := (PInteger((PByte(cpData^.lpData))^ + 4))^;
klappt nicht. Die Daten aus der CopyDataStruct können aber abgefragt werden (wenn ich auf einen dieser Werte zugreife wird keine Exception ausgelöst).

scp 5. Mär 2005 14:28

Re: c code nach delphi
 
Ich weis nicht, ob es unter C mit dem PByte klappt, aber unter Delphi sollte es so aussehen, wenn man einen Zeiger erhöhen will:
Delphi-Quellcode:
begin
  cpData := PCOPYDATASTRUCT(lParam);

  if (cpData^.dwData = 1) then
  begin
    iconData    := PNOTIFYICONDATA( (   ( Integer(cpData^.lpData) ) + 8 ) );
    itrayCommand :=       pinteger( (   ( Integer(cpData^.lpData) ) + 4 ) )^;
  end;
end;
Allerdings würde ich auch Luckies Record-Variante vorziehen, sie ist einfacher und führt zum selben Ergebnis.

sniper_w 5. Mär 2005 15:50

Re: c code nach delphi
 
Delphi-Quellcode:
IconData := PNOTIFYICONDATA(((PByte(cpData^.lpData))^+8));
iTrayCommand := (PInteger((PByte(cpData^.lpData))^ + 4))^;
Was sind eingentlich IconData und iTrayCommand ? Ein Cardinal und ein Integer ?

MatthiasW 5. Mär 2005 16:56

Re: c code nach delphi
 
Zitat:

Zitat von sniper_w
Delphi-Quellcode:
IconData := PNOTIFYICONDATA(((PByte(cpData^.lpData))^+8));
iTrayCommand := (PInteger((PByte(cpData^.lpData))^ + 4))^;
Was sind eingentlich IconData und iTrayCommand ? Ein Cardinal und ein Integer ?

jein, IconData ist ein PNotifyIconData also ein zeiger auf eine NotifyIconData - Strucktur und iTrayCommand ist ein Integer

MatthiasW 5. Mär 2005 17:04

Re: c code nach delphi
 
Zitat:

Zitat von scp
Ich weis nicht, ob es unter C mit dem PByte klappt, aber unter Delphi sollte es so aussehen, wenn man einen Zeiger erhöhen will:
Delphi-Quellcode:
begin
  cpData := PCOPYDATASTRUCT(lParam);

  if (cpData^.dwData = 1) then
  begin
    iconData    := PNOTIFYICONDATA( (   ( Integer(cpData^.lpData) ) + 8 ) );
    itrayCommand :=       pinteger( (   ( Integer(cpData^.lpData) ) + 4 ) )^;
  end;
end;
Allerdings würde ich auch Luckies Record-Variante vorziehen, sie ist einfacher und führt zum selben Ergebnis.

Danke deine Variante klappt wirklich super.

bei Luckies Variante blicke ich leider net ganz durch wie ich da den Zeiger erhöhen soll.


Alle Zeitangaben in WEZ +1. Es ist jetzt 03:49 Uhr.
Seite 2 von 2     12   

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz