1
0
forked from 0ad/0ad
0ad/source/lib/sysdep/win/wdbg.h
janwas 9cadcd875d lint fixes; no longer dynamically load dbghelp (can always distribute required version)
work in progress: cleaning up debug info, add functions for mmgr to
query caller

This was SVN commit r1781.
2005-01-23 18:07:34 +00:00

20 lines
294 B
C
Executable File

#ifndef WDBG_H__
#define WDBG_H__
#include "lib/types.h"
#ifdef __cplusplus
extern "C" {
#endif
extern void* wdbg_get_nth_caller(uint n);
extern int wdbg_resolve_symbol(void* ptr_of_interest, char* sym_name, char* file, int* line);
#ifdef __cplusplus
}
#endif
#endif // #ifndef WDBG_H__