Created
February 1, 2020 13:29
-
-
Save shelld0n/2cf9352710327637ac22f7728e4b2c59 to your computer and use it in GitHub Desktop.
OpenProcess
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// see http://www.pinvoke.net/default.aspx/kernel32/OpenProcess.html | |
[Flags] | |
public enum ProcessAccessFlags : uint | |
{ | |
All = 0x001F0FFF, | |
Terminate = 0x00000001, | |
CreateThread = 0x00000002, | |
VirtualMemoryOperation = 0x00000008, | |
VirtualMemoryRead = 0x00000010, | |
VirtualMemoryWrite = 0x00000020, | |
DuplicateHandle = 0x00000040, | |
CreateProcess = 0x000000080, | |
SetQuota = 0x00000100, | |
SetInformation = 0x00000200, | |
QueryInformation = 0x00000400, | |
QueryLimitedInformation = 0x00001000, | |
Synchronize = 0x00100000 | |
} | |
[DllImport("kernel32.dll", SetLastError = true)] | |
public static extern IntPtr OpenProcess(ProcessAccessFlags processAccess, bool bInheritHandle, int processId); | |
public static IntPtr OpenProcess(Process proc, ProcessAccessFlags flags) | |
{ | |
return OpenProcess(flags, false, proc.Id); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment