Project: Add SDK

This commit is contained in:
Gustave Monce
2021-08-14 11:24:02 +02:00
parent 452393aaa7
commit 846ea41883
42 changed files with 3214 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
using System;
namespace WPinternalsSDK
{
[Flags]
public enum RegSAM
{
QueryValue = 1,
SetValue = 2,
CreateSubKey = 4,
EnumerateSubKeys = 8,
Notify = 16,
CreateLink = 32,
WOW64_32Key = 512,
WOW64_64Key = 256,
WOW64_Res = 768,
Read = 131097,
Write = 131078,
Execute = 131097,
AllAccess = 983103
}
}