Registriert seit: 4. Apr 2008
400 Beiträge
|
AW: Byte Array to UInt64
12. Mär 2011, 09:59
Delphi-Quellcode:
function SwapUInt64(X: UInt64): UInt64;
asm
mov EDX,dword ptr [X]
mov EAX,dword ptr [X+4]
bswap EDX
bswap EAX
end;
Dies macht nun keine Probleme mehr
Delphi 2010, Update 4 & 5
|