Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.340 Beiträge
Delphi 12 Athens
|
Re: Inhalt des Speichers auslesen...
31. Mai 2006, 13:01

Zitat von Luckie:
Joo
entweder
Delphi-Quellcode:
Type P: PInt64;
IntToHex(P^, 8);
oder
Delphi-Quellcode:
Type P: Pointer;
IntToHex(PInt64(P)^, 8);
Int64, weil Real = Double und Double = 8 Byte und ebenfalls Int64 = 8 Byte.
Ein Therapeut entspricht 1024 Gigapeut.
|