mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
7bd28e4357
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2304 21ef857c-d57f-4fe0-8362-d861dc6d29cd
20 lines
610 B
C#
20 lines
610 B
C#
using System;
|
|
|
|
namespace ProcessHacker.Native.Security
|
|
{
|
|
[Flags]
|
|
public enum LsaAccountAccess : uint
|
|
{
|
|
View = 0x00000001,
|
|
AdjustPrivileges = 0x00000002,
|
|
AdjustQuotas = 0x00000004,
|
|
AdjustSystemAccess = 0x00000008,
|
|
All = StandardRights.Required | View | AdjustPrivileges | AdjustQuotas |
|
|
AdjustSystemAccess,
|
|
GenericRead = StandardRights.Read | View,
|
|
GenericWrite = StandardRights.Write | AdjustPrivileges | AdjustQuotas |
|
|
AdjustSystemAccess,
|
|
GenericExecute = StandardRights.Execute
|
|
}
|
|
}
|