Unit 'LCLClasses' Package
[Overview][Types][Classes][Index] [#lcl]

LazLongRec

Represents a Long value as low- and high-order signed SmallInt values.

Declaration

Source position: lclclasses.pp line 33

type LazLongRec = packed record

  Lo: SmallInt;

  

The low-order signed small integer value.

  Hi: SmallInt;

  

The high-order signed small integer value.

end;

Description

SysUtils has a LongRec structure which uses an unsigned Word type for Lo and Hi. LazLongRec provides a similar record with signed SmallInt members.