File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 6
6
//! Function prototypes for Windows Error Reporting (WER)
7
7
use shared:: minwindef:: { BOOL , DWORD , PDWORD } ;
8
8
use um:: winnt:: { HANDLE , HRESULT , PCWSTR , PVOID } ;
9
+ pub const WER_FAULT_REPORTING_FLAG_NOHEAP : DWORD = 1 ;
10
+ pub const WER_FAULT_REPORTING_FLAG_QUEUE : DWORD = 2 ;
11
+ pub const WER_FAULT_REPORTING_FLAG_DISABLE_THREAD_SUSPENSION : DWORD = 4 ;
12
+ pub const WER_FAULT_REPORTING_FLAG_QUEUE_UPLOAD : DWORD = 8 ;
13
+ pub const WER_FAULT_REPORTING_ALWAYS_SHOW_UI : DWORD = 16 ;
14
+ pub const WER_FAULT_REPORTING_NO_UI : DWORD = 32 ;
15
+ pub const WER_FAULT_REPORTING_FLAG_NO_HEAP_ON_QUEUE : DWORD = 64 ;
16
+ pub const WER_FAULT_REPORTING_DISABLE_SNAPSHOT_CRASH : DWORD = 128 ;
17
+ pub const WER_FAULT_REPORTING_DISABLE_SNAPSHOT_HANG : DWORD = 256 ;
18
+ pub const WER_FAULT_REPORTING_CRITICAL : DWORD = 512 ;
19
+ pub const WER_FAULT_REPORTING_DURABLE : DWORD = 1024 ;
9
20
ENUM ! { enum WER_REGISTER_FILE_TYPE {
10
21
WerRegFileTypeUserDocument = 1 ,
11
22
WerRegFileTypeOther = 2 ,
You can’t perform that action at this time.
0 commit comments