Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0140a8aa
Commit
0140a8aa
authored
Oct 28, 2010
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Oct 29, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add WerReportCreate + WerReportCloseHandle.
parent
f216dba1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
0 deletions
+28
-0
werapi.h
include/werapi.h
+28
-0
No files found.
include/werapi.h
View file @
0140a8aa
...
...
@@ -25,6 +25,9 @@
extern
"C"
{
#endif
typedef
HANDLE
HREPORT
;
typedef
enum
_WER_REGISTER_FILE_TYPE
{
WerRegFileTypeUserDocument
=
1
,
...
...
@@ -32,9 +35,34 @@ typedef enum _WER_REGISTER_FILE_TYPE
WerRegFileTypeMax
}
WER_REGISTER_FILE_TYPE
;
typedef
struct
_WER_REPORT_INFORMATION
{
DWORD
dwSize
;
HANDLE
hProcess
;
WCHAR
wzConsentKey
[
64
];
WCHAR
wzFriendlyEventName
[
128
];
WCHAR
wzApplicationName
[
128
];
WCHAR
wzApplicationPath
[
MAX_PATH
];
WCHAR
wzDescription
[
512
];
HWND
hwndParent
;
}
WER_REPORT_INFORMATION
,
*
PWER_REPORT_INFORMATION
;
typedef
enum
_WER_REPORT_TYPE
{
WerReportNonCritical
=
0
,
WerReportCritical
,
WerReportApplicationCrash
,
WerReportApplicationHang
,
WerReportKernel
,
WerReportInvalid
}
WER_REPORT_TYPE
;
HRESULT
WINAPI
WerAddExcludedApplication
(
PCWSTR
,
BOOL
);
HRESULT
WINAPI
WerRegisterFile
(
PCWSTR
file
,
WER_REGISTER_FILE_TYPE
regfiletype
,
DWORD
flags
);
HRESULT
WINAPI
WerRemoveExcludedApplication
(
PCWSTR
,
BOOL
);
HRESULT
WINAPI
WerReportCloseHandle
(
HREPORT
);
HRESULT
WINAPI
WerReportCreate
(
PCWSTR
,
WER_REPORT_TYPE
,
PWER_REPORT_INFORMATION
,
HREPORT
*
);
#ifdef __cplusplus
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment