WerReportCreate function (werapi.h)
Creates a problem report that describes an application event.
Syntax
HRESULT WerReportCreate(
[in] PCWSTR pwzEventType,
[in] WER_REPORT_TYPE repType,
[in, optional] PWER_REPORT_INFORMATION pReportInformation,
[out] HREPORT *phReportHandle
);
Parameters
[in] pwzEventType
A pointer to a Unicode string that specifies the name of the event.
[in] repType
The type of report. This parameter can be one of the following values from the WER_REPORT_TYPE enumeration type.
[in, optional] pReportInformation
A pointer to a WER_REPORT_INFORMATION structure that specifies information for the report.
[out] phReportHandle
A handle to the report. If the function fails, this handle is NULL.
Return value
This function returns S_OK on success or an error code on failure.
Remarks
Use the following functions to specify additional information to be submitted:
WerReportAddDump WerReportAddFile WerReportSetParameter To submit the information, call the WerReportSubmit function. When you have finished with the report handle, call the WerReportCloseHandle function.
Applications can also indicate that they would like the opportunity to recover data or restart on failure. For more information, see Application Recovery and Restart.
To view the reports submitted by your application, go to Windows Quality Online Services.
Requirements
Minimum supported client | Windows Vista [desktop apps only] |
Minimum supported server | Windows Server 2008 [desktop apps only] |
Target Platform | Windows |
Header | werapi.h |
Library | Wer.lib |
DLL | Wer.dll |