Browse Source

rtl: added rtti TProcedureFlag pfSafeCall and pfAsync

mattias 4 years ago
parent
commit
0e5b285b1d
1 changed files with 3 additions and 1 deletions
  1. 3 1
      packages/rtl/typinfo.pas

+ 3 - 1
packages/rtl/typinfo.pas

@@ -139,7 +139,9 @@ type
   TProcedureFlag = (
     pfStatic,   // 2^0 = 1
     pfVarargs,  // 2^1 = 2
-    pfExternal  // 2^2 = 4  name may be an expression
+    pfExternal, // 2^2 = 4  name may be an expression
+    pfSafeCall, // 2^3 = 8
+    pfAsync     // 2^4 = 16
     );
   TProcedureFlags = set of TProcedureFlag;