12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef BOINC_STACKWALKER_WIN_H
- #define BOINC_STACKWALKER_WIN_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- extern int DebuggerInitialize( LPCSTR pszBOINCLocation, LPCSTR pszSymbolStore, BOOL bProxyEnabled, LPCSTR pszProxyServer );
- extern int DebuggerDisplayDiagnostics();
- extern DWORD StackwalkFilter( EXCEPTION_POINTERS* ep, DWORD status );
- extern void StackwalkThread( HANDLE hThread, CONTEXT* c );
- #ifdef __cplusplus
- }
- #endif
- #endif
|