Add MEMPERM_DONTCARE to MemPerm

This commit is contained in:
Yuri Kunde Schlesner 2014-12-11 16:44:09 -02:00
parent 20d4e95dfd
commit 46c0a1763c

View File

@ -16,10 +16,11 @@ typedef enum {
} MemOp;
typedef enum {
MEMPERM_READ =1,
MEMPERM_WRITE =2,
MEMPERM_EXECUTE=4,
MEMPERM_MAX =0xFFFFFFFF //force 4-byte
MEMPERM_READ = 1,
MEMPERM_WRITE = 2,
MEMPERM_EXECUTE = 4,
MEMPERM_DONTCARE = 0x10000000,
MEMPERM_MAX = 0xFFFFFFFF //force 4-byte
} MemPerm;
typedef struct {