mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-14 03:16:40 +10:00
15 lines
225 B
C#
15 lines
225 B
C#
using System;
|
|
|
|
namespace WPinternalsSDK
|
|
{
|
|
[Flags]
|
|
public enum RegCreateKeyOption
|
|
{
|
|
NonVolatile = 0,
|
|
Volatile = 1,
|
|
CreateLink = 2,
|
|
BackupRestore = 4,
|
|
OpenLink = 8
|
|
}
|
|
}
|