Enumerations | |
enum | VMemProtection { None = 0, Read = 1, Write = 2, ReadWrite = 3, Execute = 4, ReadExecute = 5, ReadWriteExecute = 7 } |
Enum for memory access levels: None (forbidden), Read, Write and Execute. Read, Write and Execute can be combined, the only exclusive flag that can't be combined with others is None(forbidden) More... | |