Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.340 Beiträge
Delphi 12 Athens
|
Re: OffsetOf Delphi ekvivalent?
29. Dez 2009, 09:25
Delphi-Quellcode:
var x: record
a: word;
b: longword;
end;
offset := Integer(@x.b) - Integer(@x);
// or
offset := Integer(@x.b) - Integer(@x.a);
found in http://www.delphipraxis.net/internal...ghlight=align*
Ein Therapeut entspricht 1024 Gigapeut.
|