Enum ProcessAccessFlags
- Namespace
- SunamoPInvoke.Enums
- Assembly
- SunamoPInvoke.dll
Specifies the access rights for opening a process.
public enum ProcessAccessFlags : uint
- Extension Methods
Fields
All = 2035711All possible access rights for a process object.
CreateProcess = 128Required to create a process.
CreateThread = 2Required to create a thread in the process.
DuplicateHandle = 64Required to duplicate a handle.
QueryInformation = 1024Required to query certain information about a process.
QueryLimitedInformation = 4096Required to retrieve limited information about a process.
SetInformation = 512Required to set certain information about a process.
SetQuota = 256Required to set memory limits.
Synchronize = 1048576Required to wait for the process to terminate using wait functions.
Terminate = 1Required to terminate a process.
VirtualMemoryOperation = 8Required to perform virtual memory operations on the process.
VirtualMemoryRead = 16Required to read memory in the process.
VirtualMemoryWrite = 32Required to write to memory in the process.