2 * Windows Error Reporting definitions
4 * Copyright (C) 2010 Louis Lenders
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef __WINE_WERAPI_H
22 #define __WINE_WERAPI_H
28 /* Only 10 parameter are allowed in WerReportSetParameter */
29 #define WER_MAX_PARAM_COUNT 10
41 /* Flags for WerReportSubmit */
42 #define WER_SUBMIT_HONOR_RECOVERY 0x0001
43 #define WER_SUBMIT_HONOR_RESTART 0x0002
44 #define WER_SUBMIT_QUEUE 0x0004
45 #define WER_SUBMIT_SHOW_DEBUG 0x0008
46 #define WER_SUBMIT_ADD_REGISTERED_DATA 0x0010
47 #define WER_SUBMIT_OUTOFPROCESS 0x0020
48 #define WER_SUBMIT_NO_CLOSE_UI 0x0040
49 #define WER_SUBMIT_NO_QUEUE 0x0080
50 #define WER_SUBMIT_NO_ARCHIVE 0x0100
51 #define WER_SUBMIT_START_MINIMIZED 0x0200
52 #define WER_SUBMIT_OUTOFPROCESS_ASYNC 0x0400
53 #define WER_SUBMIT_BYPASS_DATA_THROTTLING 0x0800
54 #define WER_SUBMIT_ARCHIVE_PARAMETERS_ONLY 0x1000
55 #define WER_SUBMIT_REPORT_MACHINE_ID 0x2000
57 #define WER_MAX_PREFERRED_MODULES 128
58 #define WER_MAX_PREFERRED_MODULES_BUFFER 256
62 typedef HANDLE HREPORT
;
64 typedef enum _WER_CONSENT
66 WerConsentNotAsked
= 1,
69 WerConsentAlwaysPrompt
,
73 typedef enum _WER_REGISTER_FILE_TYPE
75 WerRegFileTypeUserDocument
= 1,
76 WerRegFileTypeOther
= 2,
78 } WER_REGISTER_FILE_TYPE
;
80 typedef struct _WER_REPORT_INFORMATION
84 WCHAR wzConsentKey
[64];
85 WCHAR wzFriendlyEventName
[128];
86 WCHAR wzApplicationName
[128];
87 WCHAR wzApplicationPath
[MAX_PATH
];
88 WCHAR wzDescription
[512];
90 } WER_REPORT_INFORMATION
, *PWER_REPORT_INFORMATION
;
93 typedef enum _WER_REPORT_TYPE
95 WerReportNonCritical
= 0,
97 WerReportApplicationCrash
,
98 WerReportApplicationHang
,
103 typedef enum _WER_SUBMIT_RESULT
114 } WER_SUBMIT_RESULT
, *PWER_SUBMIT_RESULT
;
116 typedef enum _WER_DUMP_TYPE
118 WerDumpTypeMicroDump
= 1,
124 typedef enum _WER_REPORT_UI
126 WerUIAdditionalDataDlgHeader
= 1,
127 WerUIIconFilePath
= 2,
128 WerUIConsentDlgHeader
= 3,
129 WerUIConsentDlgBody
= 4,
130 WerUIOnlineSolutionCheckText
= 5,
131 WerUIOfflineSolutionCheckText
= 6,
133 WerUICloseDlgHeader
= 8,
134 WerUICloseDlgBody
= 9,
135 WerUICloseDlgButtonText
= 10,
136 WerUICustomActionButtonText
= 11,
142 typedef struct _WER_DUMP_CUSTOM_OPTIONS
147 BOOL bOnlyThisThread
;
148 DWORD dwExceptionThreadFlags
;
149 DWORD dwOtherThreadFlags
;
150 DWORD dwExceptionThreadExFlags
;
151 DWORD dwOtherThreadExFlags
;
152 DWORD dwPreferredModuleFlags
;
153 DWORD dwOtherModuleFlags
;
154 WCHAR wzPreferredModuleList
[WER_MAX_PREFERRED_MODULES_BUFFER
];
156 } WER_DUMP_CUSTOM_OPTIONS
, *PWER_DUMP_CUSTOM_OPTIONS
;
158 typedef struct _WER_EXCEPTION_INFORMATION
160 PEXCEPTION_POINTERS pExceptionPointers
;
161 BOOL bClientPointers
;
162 } WER_EXCEPTION_INFORMATION
, *PWER_EXCEPTION_INFORMATION
;
166 HRESULT WINAPI
WerAddExcludedApplication(PCWSTR
, BOOL
);
167 HRESULT WINAPI
WerRegisterFile(PCWSTR file
, WER_REGISTER_FILE_TYPE regfiletype
, DWORD flags
);
168 HRESULT WINAPI
WerRemoveExcludedApplication(PCWSTR
, BOOL
);
169 HRESULT WINAPI
WerReportCloseHandle(HREPORT
);
170 HRESULT WINAPI
WerReportCreate(PCWSTR
, WER_REPORT_TYPE
, PWER_REPORT_INFORMATION
, HREPORT
*);
171 HRESULT WINAPI
WerReportSetParameter(HREPORT
, DWORD
, PCWSTR
, PCWSTR
);
172 HRESULT WINAPI
WerReportSetUIOption(HREPORT
, WER_REPORT_UI
, PCWSTR
);
173 HRESULT WINAPI
WerReportSubmit(HREPORT
, WER_CONSENT
, DWORD
, PWER_SUBMIT_RESULT
);
179 #endif /* __WINE_WERAPI_H */