0ad/source/lib/sysdep/win/wdbg_sym.h
janwas cded0936c5 # housekeeping
. update moduleInit mechanism and move it out of lib.cpp. now has a
thread-safe reference count and allows repeated init/shutdown (required
for self-tests)
. vfs now depends on h_mgr; h_mgr need therefore no longer explicitly be
shutdown (e.g. in self-tests)
. acpi: minor fixes
. cpu: AtomicAdd and CAS now take volatile variable (safer)
. mahaf: unload driver on shutdown (did this for DriverVerifier, but
it's 'cleaner' in general)
. wdbg_sym
. wfilesystem: get rid of manual declarations of deprecated functions;
implement them via trampoline instead

This was SVN commit r5086.
2007-05-21 23:24:56 +00:00

18 lines
504 B
C

/**
* =========================================================================
* File : wdbg_sym.h
* Project : 0 A.D.
* Description : Win32 stack trace and symbol engine.
* =========================================================================
*/
// license: GPL; see lib/license.txt
#ifndef INCLUDED_WDBG_SYM
#define INCLUDED_WDBG_SYM
struct _EXCEPTION_POINTERS;
extern void wdbg_sym_write_minidump(_EXCEPTION_POINTERS* ep);
#endif // #ifndef INCLUDED_WDBG_SYM