![]() |
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:
klappt nicht. Die Daten aus der CopyDataStruct können aber abgefragt werden (wenn ich auf einen dieser Werte zugreife wird keine Exception ausgelöst).
IconData := PNOTIFYICONDATA(((PByte(cpData^.lpData))^+8));
iTrayCommand := (PInteger((PByte(cpData^.lpData))^ + 4))^; |
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:
Allerdings würde ich auch Luckies Record-Variante vorziehen, sie ist einfacher und führt zum selben Ergebnis.
begin
cpData := PCOPYDATASTRUCT(lParam); if (cpData^.dwData = 1) then begin iconData := PNOTIFYICONDATA( ( ( Integer(cpData^.lpData) ) + 8 ) ); itrayCommand := pinteger( ( ( Integer(cpData^.lpData) ) + 4 ) )^; end; end; |
Re: c code nach delphi
Delphi-Quellcode:
Was sind eingentlich IconData und iTrayCommand ? Ein Cardinal und ein Integer ?
IconData := PNOTIFYICONDATA(((PByte(cpData^.lpData))^+8));
iTrayCommand := (PInteger((PByte(cpData^.lpData))^ + 4))^; |
Re: c code nach delphi
Zitat:
|
Re: c code nach delphi
Zitat:
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. |
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