Try to address issue of treating pointer function values as bitmap.

This commit is contained in:
Fred Kiefer 2023-08-18 17:29:43 +02:00
parent c1833e1130
commit b0263ae4a8
4 changed files with 26 additions and 27 deletions

View file

@ -81,6 +81,11 @@ inline static BOOL memoryType(int options, int flag)
return (options & 0xff) == flag;
}
inline static BOOL personalityType(int options, int flag)
{
return (options & 0xff00) == flag;
}
/* Declare the concrete pointer functions class as a wrapper around
* an instance of the PFInfo structure.
*/