|
DoctorDumpSDK
|
This interface used to add custom data to crash report. More...
#include <CrashRpt.h>
Public Member Functions | |
| virtual bool | AddFileToReport (LPCWSTR path, LPCWSTR reportFileName)=0 |
| virtual bool | RemoveFileFromReport (LPCWSTR path)=0 |
| virtual bool | AddUserInfoToReport (LPCWSTR key, LPCWSTR value)=0 |
| virtual bool | RemoveUserInfoFromReport (LPCWSTR key)=0 |
This interface used to add custom data to crash report.
|
pure virtual |
You may add any file to crash report. This file will be read when crash appears and will be sent within the report. Multiple files may be added. Filename of the file in the report may be changed to any name.
| [in] | path | Path to the file, that will be added to the report. |
| [in] | reportFileName | Filename that will be used in report for this file. If parameter is NULL, original name from path will be used. |
|
pure virtual |
You may add any key/value pair to crash report.
| [in] | key | key string that will be added to the report. |
| [in] | value | value for the key. |
|
pure virtual |
Remove from report the file that was registered earlier to be sent within report.
| [in] | path | Path to the file, that will be removed from the report. |
|
pure virtual |
You may remove any key that was added previously to crash report by crash_rpt::CrashRpt::AddUserInfoToReport.
| [in] | key | key string that will be removed from the report. |
1.8.13