Files
WPinternals/WPinternalsSDK/RegCreateKeyOption.cs
T
2021-08-14 11:24:02 +02:00

15 lines
225 B
C#

using System;
namespace WPinternalsSDK
{
[Flags]
public enum RegCreateKeyOption
{
NonVolatile = 0,
Volatile = 1,
CreateLink = 2,
BackupRestore = 4,
OpenLink = 8
}
}