Files
mirror-processhacker/trunk/ProcessHacker.Native/Security/ProcessAccess.cs
T
wj32 c096bdfa33 major refactoring; all Native functions are now in a separate assembly
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@1109 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2009-04-21 00:39:15 +00:00

24 lines
622 B
C#

using System;
namespace ProcessHacker.Native.Security
{
[Flags]
public enum ProcessAccess : uint
{
Terminate = 0x0001,
CreateThread = 0x0002,
SetSessionId = 0x0004,
VmOperation = 0x0008,
VmRead = 0x0010,
VmWrite = 0x0020,
DupHandle = 0x0040,
CreateProcess = 0x0080,
SetQuota = 0x0100,
SetInformation = 0x0200,
QueryInformation = 0x0400,
SuspendResume = 0x0800,
QueryLimitedInformation = 0x1000,
All = StandardRights.Required | StandardRights.Synchronize | 0xffff
}
}