FreeRDP
libwinpr/utils/unwind/debug.h
1 
21 #ifndef WINPR_DEBUG_UNWIND_H
22 #define WINPR_DEBUG_UNWIND_H
23 
24 #ifdef __cplusplus
25 extern "C"
26 {
27 #endif
28 
29 #include <winpr/wtypes.h>
30 #include <winpr/winpr.h>
31 #include <winpr/wlog.h>
32 
33  void* winpr_unwind_backtrace(DWORD size);
34  void winpr_unwind_backtrace_free(void* buffer);
35  char** winpr_unwind_backtrace_symbols(void* buffer, size_t* used);
36 
37 #ifdef __cplusplus
38 }
39 #endif
40 
41 #endif /* WINPR_DEBUG_UNWIND_H */