Add MEMPERM_READWRITE and MEMPERM_READEXECUTE

This commit is contained in:
fincs 2020-05-08 03:16:30 +02:00
parent 750bceebf2
commit b03b64dd09
No known key found for this signature in database
GPG Key ID: 62C7609ADA219C60

View File

@ -57,6 +57,8 @@ typedef enum {
MEMPERM_READ = 1, ///< Readable
MEMPERM_WRITE = 2, ///< Writable
MEMPERM_EXECUTE = 4, ///< Executable
MEMPERM_READWRITE = MEMPERM_READ | MEMPERM_WRITE, ///< Readable and writable
MEMPERM_READEXECUTE = MEMPERM_READ | MEMPERM_EXECUTE, ///< Readable and executable
MEMPERM_DONTCARE = 0x10000000, ///< Don't care
} MemPerm;