mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 03:23:23 +08:00
35 lines
530 B
C++
35 lines
530 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool
|
|
is64bitSystem();
|
|
|
|
int
|
|
ptrSize();
|
|
|
|
std::string
|
|
dbgSymPath();
|
|
|
|
std::string
|
|
getPdbFile( ULONG64 moduleBase );
|
|
|
|
std::string
|
|
getImageFile( ULONG64 moduleBase );
|
|
|
|
void
|
|
reloadModule( const char * moduleName );
|
|
|
|
bool
|
|
isKernelDebugging();
|
|
|
|
bool
|
|
isDumpAnalyzing();
|
|
|
|
std::string
|
|
getDebuggerImage();
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|