123456789101112131415161718192021222324252627 |
- /*
- * category: [debug]
- * apply status: framework(spase)
- * edit status:
- * build status:
- * description: SpBase invoke it at SuppressError function.
- */
- #ifndef DUMPEXCEPTION_H
- #define DUMPEXCEPTION_H
- #pragma once
- #include "config.h"
- #include <winpr/error.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- TOOLKIT_API int DumpExceptionInfo(PEXCEPTION_POINTERS pExceptPtrs, HANDLE hLogFile);
- #ifdef __cplusplus
- } // extern "C" {
- #endif
- #endif // DUMPEXCEPTION_H
|