コード例 #1
0
ファイル: DbgEngDll.cs プロジェクト: southpolenator/WinDbgCs
 private static extern IntPtr SymFunctionTableAccess64AccessRoutines(
     IntPtr hProcess,
     ulong AddrBase,
     ReadProcessMemoryProc64 ReadMemoryRoutine,
     GetModuleBaseProc64 GetModuleBaseRoutine);
コード例 #2
0
ファイル: DbgEngDll.cs プロジェクト: southpolenator/WinDbgCs
 private static extern bool StackWalkEx(
     ImageFileMachine MachineType,
     IntPtr hProcess,
     IntPtr hThread,
     ref STACKFRAME_EX StackFrame,
     IntPtr ContextRecord,
     ReadProcessMemoryProc64 ReadMemoryRoutine,
     FunctionTableAccessProc64 FunctionTableAccessRoutine,
     GetModuleBaseProc64 GetModuleBaseRoutine,
     TranslateAddressProc64 TranslateAddress,
     uint Flags);