Method |
Description |
|
CloseHandle ( HandleRef handle ) : bool |
|
|
CloseHandle ( IntPtr hObject ) : bool |
|
|
CreateToolhelp32Snapshot ( int flags, int processId ) : ToolHelpHandle |
|
|
DuplicateHandle ( [ hSourceProcessHandle, [ hSourceHandle, [ hTargetProcessHandle, [ lpTargetHandle, [ dwDesiredAccess, [ bInheritHandle, [ dwOptions ) : bool |
|
|
GetCurrentProcess ( ) : IntPtr |
|
|
GetModuleHandle ( string lpModuleName ) : Int32 |
|
|
GetProcAddress ( Int32 hModule, string procedureName ) : Int32 |
|
|
IsWow64Process ( IntPtr processHandle, bool &wow64Process ) : bool |
|
|
LoadLibrary ( string dllToLoad ) : Int32 |
|
|
Module32First ( ToolHelpHandle hSnapshot, MODULEENTRY32 &lpme ) : bool |
|
|
Module32Next ( ToolHelpHandle hSnapshot, MODULEENTRY32 &lpme ) : bool |
|
|
OpenProcess ( UInt32 dwDesiredAccess, Int32 bInheritHandle, Int32 dwProcessId ) : IntPtr |
|
|
ReadProcessMemory ( IntPtr hProcess, IntPtr lpBaseAddress, byte buffer, Int32 size, IntPtr &lpNumberOfBytesRead ) : bool |
|
|
VirtualAllocEx ( IntPtr hProcess, Int32 lpAddress, Int32 dwSize, AllocationType flAllocationType, MemoryProtection flProtect ) : Int32 |
|
|
VirtualQueryEx ( IntPtr handle, Int32 address, MEMORY_BASIC_INFORMATION &buffer, Int32 sizeOfBuffer ) : Int32 |
|
|
WriteProcessMemory ( IntPtr hProcess, IntPtr lpBaseAddress, byte lpBuffer, Int32 nSize, IntPtr &lpNumberOfBytesWritten ) : bool |
|
|