MakeInt64 Function
Combine High and Low DWord into Int64.

Unit
QESBPCSSystem

Declaration
Function MakeInt64(const HiDWord, LoDWord: LongWord): Int64;

Parameters
HiDWord High DWord (4 bytes).
LoDWord Low DWord (4 bytes).

Category
Memory Operations
Arithmetic Routines for Integers

Implementation

function MakeInt64 (const HiDWord, LoDWord: LongWord): Int64;
asm
	xchg eax, edx  //Swap eax and edx
End;


HTML generated by Time2HELP
http://www.time2help.com