cohtml::VMemProtection
On this page
Types
Name | |
---|---|
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) |
Types Documentation
enum VMemProtection
Enumerator | Value | Description |
---|---|---|
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)