pykd/pykd/dbgsystem.h
SND\kernelnet_cp d2e5dacb50 [+] added: loadLinkedList routine
[+] added: getPdbFile routine
[+] added: reloadSymbols

git-svn-id: https://pykd.svn.codeplex.com/svn@54138 9b283d60-5439-405e-af05-b73fd8c4d996
2010-08-16 15:04:22 +00:00

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 );
/////////////////////////////////////////////////////////////////////////////////