mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-21 21:03:23 +08:00

[+] added: getPdbFile routine [+] added: reloadSymbols git-svn-id: https://pykd.svn.codeplex.com/svn@54138 9b283d60-5439-405e-af05-b73fd8c4d996
28 lines
483 B
C++
28 lines
483 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
bool
|
|
is64bitSystem();
|
|
|
|
inline
|
|
int
|
|
ptrSize() {
|
|
return is64bitSystem() ? 8 : 4;
|
|
}
|
|
|
|
std::string
|
|
dbgSymPath();
|
|
|
|
std::string
|
|
getPdbFile( ULONG64 moduleBase );
|
|
|
|
std::string
|
|
getImageFile( ULONG64 moduleBase );
|
|
|
|
void
|
|
reloadSymbols( const char * moduleName );
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|