SMBLibrary/SMBLibrary/Enums/NtCreateFile/ShareAccess.cs
2017-01-06 10:56:05 +02:00

15 lines
314 B
C#

using System;
namespace SMBLibrary
{
/// <summary>
/// No bits set = Prevents the file from being shared
/// </summary>
[Flags]
public enum ShareAccess : uint
{
FILE_SHARE_READ = 0x0001,
FILE_SHARE_WRITE = 0x0002,
FILE_SHARE_DELETE = 0x0004,
}
}