+ declare Pointer types for the remaining Boolean types

git-svn-id: trunk@42032 -
This commit is contained in:
svenbarth 2019-05-10 15:25:08 +00:00
parent 496fbb4fc1
commit 46a8afb50d

View File

@ -597,8 +597,18 @@ Type
PPCodePointer = ^PCodePointer;
PBoolean = ^Boolean;
{$IFNDEF VER3_0}
PBoolean8 = ^Boolean8;
{$ENDIF VER3_0}
PBoolean16 = ^Boolean16;
PBoolean32 = ^Boolean32;
PBoolean64 = ^Boolean64;
PByteBool = ^ByteBool;
PWordBool = ^WordBool;
PLongBool = ^LongBool;
PQWordBool = ^QWordBool;
PNativeInt = ^NativeInt;
PNativeUInt = ^NativeUint;