mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
2ba1da4d58
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2372 21ef857c-d57f-4fe0-8362-d861dc6d29cd
21 lines
661 B
C#
21 lines
661 B
C#
using System;
|
|
|
|
namespace ProcessHacker.Native.Security
|
|
{
|
|
[Flags]
|
|
public enum SamServerAccess : uint
|
|
{
|
|
Connect = 0x1,
|
|
Shutdown = 0x2,
|
|
Initialize = 0x4,
|
|
CreateDomain = 0x8,
|
|
EnumerateDomains = 0x10,
|
|
LookupDomain = 0x20,
|
|
All = StandardRights.Required | Connect | Initialize | CreateDomain |
|
|
Shutdown | EnumerateDomains | LookupDomain,
|
|
GenericRead = StandardRights.Read | EnumerateDomains,
|
|
GenericWrite = StandardRights.Write | Initialize | CreateDomain | Shutdown,
|
|
GenericExecute = StandardRights.Execute | Connect | LookupDomain
|
|
}
|
|
}
|