rtl: added rtti TProcedureFlag pfSafeCall and pfAsync

This commit is contained in:
mattias 2021-04-24 12:08:19 +00:00
parent 0d67dd9e56
commit 0e5b285b1d

View File

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