Files
mirror-processhacker/trunk/ProcessHacker.Native/Security/DebugObjectAccess.cs
T
wj32 f028ca4ca6 * Terminator test: TD1 (debugs a process and closes the debug object)
* added DebugObjectHandle
* added copyright headers

git-svn-id: svn://svn.code.sf.net/p/processhacker/code@1259 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2009-05-10 09:29:40 +00:00

16 lines
402 B
C#

using System;
namespace ProcessHacker.Native.Security
{
[Flags]
public enum DebugObjectAccess : uint
{
ReadEvent = 0x1,
ProcessAssign = 0x2,
SetInformation = 0x4,
QueryInformation = 0x8,
All = StandardRights.Required | StandardRights.Synchronize |
ReadEvent | ProcessAssign | SetInformation | QueryInformation
}
}