Files
dmex b02427417c PH1.x: fixed build
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@5614 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2014-02-25 23:14:38 +00:00

28 lines
957 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ProcessHacker.Native.Security
{
[Flags]
public enum DesktopAccess : uint
{
ReadObjects = 0x0001,
CreateWindow = 0x0002,
CreateMenu = 0x0004,
HookControl = 0x0008,
JournalRecord = 0x0010,
JournalPlayback = 0x0020,
Enumerate = 0x0040,
WriteObjects = 0x0080,
SwitchDesktop = 0x0100,
All = CreateMenu | CreateWindow | Enumerate | HookControl |
JournalPlayback | JournalRecord | ReadObjects | SwitchDesktop |
WriteObjects | StandardRights.Required,
GenericRead = Enumerate | ReadObjects | StandardRights.Read,
GenericWrite = CreateMenu | CreateWindow | HookControl | JournalPlayback |
JournalRecord | WriteObjects | StandardRights.Write,
GenericExecute = SwitchDesktop | StandardRights.Execute
}
}