Indy 9
|
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;
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.