mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-14 03:16:40 +10:00
23 lines
421 B
C#
23 lines
421 B
C#
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
|
|
}
|
|
}
|