コード例 #1
0
ファイル: Imports.cs プロジェクト: hfenigma/d3adventure
 internal static unsafe extern bool ReadProcessMemory(SafeProcessHandle hProcess, IntPtr lpBaseAddress, byte* lpBuffer, int dwSize, out int lpNumberOfBytesRead);
コード例 #2
0
ファイル: Imports.cs プロジェクト: hfenigma/d3adventure
 internal static extern bool WriteProcessMemory(SafeProcessHandle lpHandle, IntPtr lpAddress, byte[] lpBuffer, int lpSize, out int lpBytesWrote);
コード例 #3
0
ファイル: Imports.cs プロジェクト: hfenigma/d3adventure
 internal static extern bool VirtualFreeEx(SafeProcessHandle hProcess, IntPtr dwAddress, int nSize, MemoryFree dwFreeType);
コード例 #4
0
ファイル: Imports.cs プロジェクト: hfenigma/d3adventure
 internal static extern bool VirtualProtectEx(SafeProcessHandle hProcess, IntPtr lpAddress, IntPtr dwSize, uint flNewProtect, out uint lpflOldProtect);
コード例 #5
0
ファイル: Imports.cs プロジェクト: hfenigma/d3adventure
 internal static extern IntPtr VirtualAllocEx(SafeProcessHandle hProcess, uint dwAddress, int nSize, AllocationType dwAllocationType, MemoryProtection dwProtect);