first commit

This commit is contained in:
2025-07-06 00:23:46 +02:00
commit 38f50c8819
1788 changed files with 112878 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using System;
namespace NitroxModel.Platforms.OS.Windows.Internal
{
[Flags]
public enum SnapshotFlags : uint
{
HEAP_LIST = 0x00000001,
PROCESS = 0x00000002,
THREAD = 0x00000004,
MODULE = 0x00000008,
MODULE32 = 0x00000010,
INHERIT = 0x80000000,
ALL = 0x0000001F,
NO_HEAPS = 0x40000000
}
}