Browse Source

+ declare Pointer types for the remaining Boolean types

git-svn-id: trunk@42032 -
svenbarth 6 years ago
parent
commit
46a8afb50d
1 changed files with 10 additions and 0 deletions
  1. 10 0
      rtl/inc/systemh.inc

+ 10 - 0
rtl/inc/systemh.inc

@@ -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;