Audacity 3.2.0
CrashReport.h
Go to the documentation of this file.
1/**********************************************************************
2
3 Audacity: A Digital Audio Editor
4
5 CrashReport.h
6
7 Paul Licameli
8 split from AudacityApp.h
9
10 **********************************************************************/
11
12#ifndef __AUDACITY_CRASH_REPORT__
13#define __AUDACITY_CRASH_REPORT__
14
15#undef HAS_CRASH_REPORT
16
17#include <wx/setup.h> // for wxUSE* macros
18#if defined(wxUSE_DEBUGREPORT) && wxUSE_DEBUGREPORT
19 #define HAS_CRASH_REPORT
20 #include <wx/debugrpt.h>
21
22 namespace CrashReport
23 {
24 AUDACITY_DLL_API
25 void Generate(wxDebugReport::Context ctx);
26 }
27
28#endif
29
30#endif