Internet Direct (Indy)
Home
PreviousUpNext
TIdInt64Parts Record

Represents 64-bit Integer values in the Indy library.

Pascal
TIdInt64Parts = packed record
  case Integer of
    0: (LowPart: LongWord;
        HighPart: LongWord;);
    1: (QuadPart: Int64;);
end;

TIdInt64Parts is a packed record type used to 64-bit values on the Windows and Linux platforms. TIdInt64Parts is used in HostToNetwork and NetworkToHost to convert native Int64 values to their Host and Network representations. 

Use the LowPart and HighPart member fields to access the LongWord values that make up the 64-bit Integer data type. 

Use the QuadPart member field to access the Int64 value that makes up the 64-bit Integer data type.

Internet Direct (Indy) version 10.1.5
Copyright © 1993-2006, Chad Z. Hower (aka Kudzu) and the Indy Pit Crew. All rights reserved.
Website http://www.indyproject.org.
Post feedback to the Indy Documentation newsgroup.