Files
mirror-processhacker/trunk/ProcessHacker.Native/Security/ProfileAccess.cs
T
wj32 171674811b added Access definitions for many more NT objects
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@1298 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2009-05-19 08:47:59 +00:00

12 lines
205 B
C#

using System;
namespace ProcessHacker.Native.Security
{
[Flags]
public enum ProfileAccess : uint
{
Control = 0x1,
All = StandardRights.Required | Control
}
}