Zitat:
Delphi-Quellcode: markieren
Delphi-Quellcode:
Type P: PInt64;
IntToHex(P^, 8);
oder
Delphi-Quellcode:
Delphi-Quellcode: markieren
Type P: Pointer;
IntToHex(PInt64(P)^, 8);
Es funktioniert nicht so wie es sein sollte:
z.B. 46,416 (10) = 42 39 A8 F5 (16) - richtig
bei mir
46,415 (10) = 40 47 35 1E B8 51 EB 85 (16)