mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-09-21 06:12:56 -04:00
30 lines
703 B
C++
Executable File
30 lines
703 B
C++
Executable File
// ======================================================================
|
|
//
|
|
// DebugHelp.h
|
|
// copyright 2000 Verant Interactive
|
|
//
|
|
// ======================================================================
|
|
|
|
#ifndef DEBUG_HELP_H
|
|
#define DEBUG_HELP_H
|
|
|
|
#include "sharedDebug/FirstSharedDebug.h"
|
|
|
|
// ======================================================================
|
|
|
|
class DebugHelp
|
|
{
|
|
public:
|
|
|
|
static void install();
|
|
static void remove();
|
|
|
|
static void getCallStack(uint32 *callStack, int sizeOfCallStack);
|
|
static bool lookupAddress(uint32 address, char *libName, char *fileName, int fileNameLength, int &line);
|
|
};
|
|
|
|
// ======================================================================
|
|
|
|
#endif
|
|
|