fix VC6 build

This commit is contained in:
Chris Danford
2006-02-13 01:07:44 +00:00
parent 731368a0e7
commit 6116d9f1bc
3 changed files with 6 additions and 6 deletions
@@ -332,7 +332,7 @@ namespace SymbolLookup
VirtualQueryEx( g_hParent, ptr, &meminfo, sizeof meminfo );
char tmp[512];
if( VDDebugInfoLookupRVA(pctx, (unsigned int)ptr, tmp, sizeof(tmp)) >= 0 )
if( VDDebugInfo::VDDebugInfoLookupRVA(pctx, (unsigned int)ptr, tmp, sizeof(tmp)) >= 0 )
{
wsprintf( buf, "%08x: %s", ptr, Demangle(tmp) );
return;
@@ -777,9 +777,9 @@ void ChildProcess()
ReadCrashDataFromParent( fileno(stdin), Data );
RString sCrashReport;
VDDebugInfoInitFromFile( &g_debugInfo );
VDDebugInfo::VDDebugInfoInitFromFile( &g_debugInfo );
MakeCrashReport( Data, sCrashReport );
VDDebugInfoDeinit( &g_debugInfo );
VDDebugInfo::VDDebugInfoDeinit( &g_debugInfo );
DoSave( sCrashReport );