mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-13 19:06:41 +10:00
13 lines
215 B
C#
13 lines
215 B
C#
namespace WPinternalsSDK
|
|
{
|
|
public enum CreationDisposition
|
|
{
|
|
CreateNew = 1,
|
|
CreateAlways,
|
|
OpenExisting,
|
|
OpenAlways,
|
|
TruncateExisting,
|
|
OpenForLoader
|
|
}
|
|
}
|