mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
b02427417c
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@5614 21ef857c-d57f-4fe0-8362-d861dc6d29cd
28 lines
957 B
C#
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
|
|
}
|
|
}
|