mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-04-30 02:37:49 +02:00
15 lines
314 B
C#
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,
|
|
}
|
|
}
|