Files
Yae/src/Win32/AllocationType.cs
2022-07-13 20:37:21 +08:00

15 lines
295 B
C#

namespace YaeAchievement.Win32;
[Flags]
public enum AllocationType : uint {
Commit = 0x1000,
Reserve = 0x2000,
Decommit = 0x4000,
Release = 0x8000,
Reset = 0x80000,
Physical = 0x400000,
TopDown = 0x100000,
WriteWatch = 0x200000,
LargePages = 0x20000000
}