SplitInt64 Procedure
Split a Int64 into High DWord and Low DWord.

Unit
QESBPCSSystem

Declaration
Procedure SplitInt64(const L: Int64; var HiDWord, LoDWord: LongWord);

Parameters
Int64 to process.
HiDWord Returns High DWord (4 bytes).
LoDWord Returns Low DWord (4 bytes).

Category
Memory Operations
Arithmetic Routines for Integers

Implementation

procedure SplitInt64 (const L: Int64; var HiDWord, LoDWord: LongWord);
begin
     with Int64Rec (L) do
     begin
          HiDWord := Hi;
          LoDWord := Lo;
     end;
End;


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