mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
c096bdfa33
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@1109 21ef857c-d57f-4fe0-8362-d861dc6d29cd
23 lines
641 B
C#
23 lines
641 B
C#
using System;
|
|
|
|
namespace ProcessHacker.Native.Security
|
|
{
|
|
[Flags]
|
|
public enum PolicyAccess : uint
|
|
{
|
|
ViewLocalInformation = 0x00000001,
|
|
ViewAuditInformation = 0x00000002,
|
|
GetPrivateInformation = 0x00000004,
|
|
TrustAdmin = 0x00000008,
|
|
CreateAccount = 0x00000010,
|
|
CreateSecret = 0x00000020,
|
|
CreatePrivilege = 0x00000040,
|
|
SetDefaultQuotaLimits = 0x00000080,
|
|
SetAuditRequirements = 0x00000100,
|
|
AuditLogAdmin = 0x00000200,
|
|
ServerAdmin = 0x00000400,
|
|
LookupNames = 0x00000800,
|
|
Notification = 0x00001000
|
|
}
|
|
}
|