win32 define and injector

This commit is contained in:
HolographicHat
2022-06-10 18:34:24 +08:00
parent 8aed3fd095
commit 12348a3941
17 changed files with 312 additions and 139 deletions

View File

@@ -0,0 +1,13 @@
namespace YaeAchievement.Win32;
public static class AllocationType {
public const int Commit = 0x1000;
public const int Reserve = 0x2000;
public const int Decommit = 0x4000;
public const int Release = 0x8000;
public const int Reset = 0x80000;
public const int Physical = 0x400000;
public const int TopDown = 0x100000;
public const int WriteWatch = 0x200000;
public const int LargePages = 0x20000000;
}