mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-14 03:16:40 +10:00
15 lines
230 B
C#
15 lines
230 B
C#
using System;
|
|
|
|
namespace WPinternalsSDK
|
|
{
|
|
public enum CreationDisposition
|
|
{
|
|
CreateNew = 1,
|
|
CreateAlways,
|
|
OpenExisting,
|
|
OpenAlways,
|
|
TruncateExisting,
|
|
OpenForLoader
|
|
}
|
|
}
|