mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-14 03:16:40 +10:00
14 lines
184 B
C#
14 lines
184 B
C#
using System;
|
|
|
|
namespace WPinternalsSDK
|
|
{
|
|
[Flags]
|
|
internal enum ShareMode : uint
|
|
{
|
|
None = 0U,
|
|
Read = 1U,
|
|
Write = 2U,
|
|
Delete = 4U
|
|
}
|
|
}
|