Click or drag to resize
ProcessAccess Enumeration

Namespace: Ozeki.Common
Assembly: OzekiSDK (in OzekiSDK.dll) Version: 1.8.12.0 (1.8.12)
Syntax
[FlagsAttribute]
public enum ProcessAccess
Members
  Member nameValueDescription
AllAccess1050235Specifies all possible access flags for the process object.
CreateThread2Enables usage of the process handle in the CreateRemoteThread function to create a thread in the process.
DuplicateHandle64Enables usage of the process handle as either the source or target process in the DuplicateHandle function to duplicate a handle.
QueryInformation1024Enables usage of the process handle in the GetExitCodeProcess and GetPriorityClass functions to read information from the process object.
SetInformation512Enables usage of the process handle in the SetPriorityClass function to set the priority class of the process.
Terminate1Enables usage of the process handle in the TerminateProcess function to terminate the process.
VMOperation8Enables usage of the process handle in the VirtualProtectEx and WriteProcessMemory functions to modify the virtual memory of the process.
VMRead16Enables usage of the process handle in the ReadProcessMemory function to' read from the virtual memory of the process.
VMWrite32Enables usage of the process handle in the WriteProcessMemory function to write to the virtual memory of the process.
Synchronize1048576Enables usage of the process handle in any of the wait functions to wait for the process to terminate.
See Also