mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 11:43:23 +08:00

[+] added : dbgBreakpointClass class for control breakpoints git-svn-id: https://pykd.svn.codeplex.com/svn@58740 9b283d60-5439-405e-af05-b73fd8c4d996
28 lines
464 B
C++
28 lines
464 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();
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|