VarInt32Pair Record

Represents type VarInt32Pair.

Namespace: flcInteger
type
 VarInt32Pair = packed record
 case Integer of
 0 : (DataWord8s : array[0..7] of Byte);
 1 : (DataWord16s : array[0..3] of Word);
 2 : (DataWord32s : array[0..1] of Word32);
 3 : (DataInt8s : array[0..7] of ShortInt);
 4 : (DataInt16s : array[0..3] of SmallInt);
 5 : (DataInt32s : array[0..1] of Int32);
 end;

The VarInt32Pair type exposes the following members.

Show:
 NameDescription
ControlByte

Represents field ControlByte.

DataInt16s

Represents field DataInt16s.

DataInt32s

Represents field DataInt32s.

DataInt8s

Represents field DataInt8s.

DataWord16s

Represents field DataWord16s.

DataWord32s

Represents field DataWord32s.

DataWord8s

Represents field DataWord8s.

Top