Internet Direct (Indy) Version 9.0.1 Beta
TULong
Represents an unsigned long integer value.

TULong = packed record
  case Byte of
    0: (B1: Byte;
        B2: Byte;
        B3: Byte;
        B4: Byte;);
    1: (W1: Word;
        W2: Word;);
    2: (L1: Longint;);
    3: (C1: Cardinal;);
  end;
Description
TULong is a variant record type that provides access to differing representations of an unsigned long Integer value.

B1,B2,B3,B4 are the individual Byte values for the unsigned long integer value.

W1,W2 are the individual Word values for the unsigned long integer value.

L1 is the LongInt value for the unsigned long integer value.

C1 is the Cardinal value for the unsigned long integer value.