| SplitInt64 Procedure | 
Unit
QESBPCSSystem
Declaration
Procedure SplitInt64(const L: Int64; var HiDWord, LoDWord: LongWord);
| Parameters | 
| L | Int64 to process. | 
| HiDWord | Returns High DWord (4 bytes). | 
| LoDWord | Returns Low DWord (4 bytes). | 
Category
Memory Operations
Arithmetic Routines for IntegersImplementation
 
| procedure SplitInt64 (const L: Int64; var HiDWord, LoDWord: LongWord);
begin
     with Int64Rec (L) do
     begin
          HiDWord := Hi;
          LoDWord := Lo;
     end;
End; | 
|  |