This code assumes which the PShort type is defined in versions greater than
Delphi 2009.
{{{
{$IF CompilerVersion <20}
type
PUInt64 = ^UInt64;
PShort = ^SHORT;
{$IFEND}
}}}
but is not, as workaround the type must be defined always, or just use the
PSmallInt , because the SHORT type is an alias for SmallInt.
Original issue reported on code.google.com by Rodrigo.Ruz.V@gmail.com on 21 Apr 2014 at 3:51
Original issue reported on code.google.com by
Rodrigo.Ruz.V@gmail.com
on 21 Apr 2014 at 3:51