LeviLamina
Loading...
Searching...
No Matches
VMemProtection.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cohtml::VMemProtection {
6
7enum class VMemProtection : int {
8 None = 0,
9 Read = 1,
10 Write = 2,
11 ReadWrite = 3,
12 Execute = 4,
13 ReadExecute = 5,
14 ReadWriteExecute = 7,
15};
16
17}