Method |
Description |
|
CloseHandle ( IntPtr hObject ) : bool |
|
|
CreateProcess ( string lpApplicationName, string lpCommandLine, SECURITY_ATTRIBUTES &lpProcessAttributes, SECURITY_ATTRIBUTES &lpThreadAttributes, bool bInheritHandles, uint dwCreationFlags, IntPtr lpEnvironment, string lpCurrentDirectory, [ lpStartupInfo, PROCESS_INFORMATION &lpProcessInformation ) : bool |
|
|
GetWindowThreadProcessId ( IntPtr hWnd, uint &lpdwProcessId ) : uint |
|
|
OpenProcess ( uint dwDesiredAccess, bool bInheritHandle, uint dwProcessId ) : IntPtr |
|
|
ReadProcessMemory ( IntPtr hProcess, IntPtr lpBaseAddress, [ lpBuffer, uint nSize, IntPtr lpNumberOfBytesRead ) : bool |
|
|
VirtualAllocEx ( IntPtr hProcess, IntPtr lpAddress, uint dwSize, uint flAllocationType, uint flProtect ) : IntPtr |
|
|
VirtualFreeEx ( IntPtr hProcess, IntPtr lpAddress, UIntPtr dwSize, uint dwFreeType ) : bool |
|
|
WriteProcessMemory ( IntPtr hProcess, IntPtr lpBaseAddress, IntPtr lpBuffer, uint size, IntPtr lpNumberOfBytesWritten ) : bool |
|
|
WriteProcessMemory ( IntPtr hProcess, IntPtr lpBaseAddress, byte lpBuffer, uint size, IntPtr lpNumberOfBytesWritten ) : bool |
|
|