AFAIK gibt es ein Int64def -record oder so ähnlich... ich muss mal nachsehn
Edit: Kannst du aber auch selber machen:
Delphi-Quellcode:
TInt64def = record
case Integer of
0: ( Int64val: Int64);
1: ( LowInt, HighInt: Cardinal);
2: ( Word1, Word2, Word3, Word4: Word);
3: ( Byte1,Byte2, ... ,Byte8: Byte);
end;
end;