Module: wine Branch: master Commit: 36e7fd09ee05cfd20da2d7e042a555655f4c96f3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=36e7fd09ee05cfd20da2d7e042...
Author: Detlef Riekenberg wine.dev@web.de Date: Wed Jul 25 00:19:53 2012 +0200
wer: Add a stub for WerReportAddFile.
---
dlls/wer/main.c | 23 +++++++++++++++++++++++ dlls/wer/wer.spec | 2 +- include/werapi.h | 11 +++++++++++ 3 files changed, 35 insertions(+), 1 deletions(-)
diff --git a/dlls/wer/main.c b/dlls/wer/main.c index 0f5ad54..a01479c 100644 --- a/dlls/wer/main.c +++ b/dlls/wer/main.c @@ -199,6 +199,29 @@ HRESULT WINAPI WerReportAddDump(HREPORT hReportHandle, HANDLE hProcess, HANDLE h }
/*********************************************************************** + * WerReportAddFile (wer.@) + * + * Add File to a error report handle. + * + * PARAMS + * hreport [i] error reporting handle to add the file + * path [i] path to the file to add + * type [i] type of the file to add + * flags [i] flags for the file + * + * RETURNS + * Success: S_OK + * Failure: A HRESULT error code + * + */ +HRESULT WINAPI WerReportAddFile(HREPORT hreport, PCWSTR path, WER_FILE_TYPE type, DWORD flags) +{ + FIXME("(%p, %s, %d, 0x%x) :stub\n", hreport, debugstr_w(path), type, flags); + + return S_OK; +} + +/*********************************************************************** * WerReportCloseHandle (wer.@) * * Close an error reporting handle and free associated resources diff --git a/dlls/wer/wer.spec b/dlls/wer/wer.spec index fe9fad7..e4cef3b 100644 --- a/dlls/wer/wer.spec +++ b/dlls/wer/wer.spec @@ -64,7 +64,7 @@ @ stdcall WerAddExcludedApplication(wstr long) @ stdcall WerRemoveExcludedApplication(wstr long) @ stdcall WerReportAddDump(ptr ptr ptr long ptr ptr long) -@ stub WerReportAddFile +@ stdcall WerReportAddFile(ptr wstr long long) @ stdcall WerReportCloseHandle(ptr) @ stdcall WerReportCreate(wstr long ptr ptr) @ stdcall WerReportSetParameter(ptr long wstr wstr) diff --git a/include/werapi.h b/include/werapi.h index c709dad..6c3bb24 100644 --- a/include/werapi.h +++ b/include/werapi.h @@ -70,6 +70,16 @@ typedef enum _WER_CONSENT WerConsentMax } WER_CONSENT;
+typedef enum _WER_FILE_TYPE +{ + WerFileTypeMicrodump = 1, + WerFileTypeMinidump, + WerFileTypeHeapdump, + WerFileTypeUserDocument, + WerFileTypeOther, + WerFileTypeMax +} WER_FILE_TYPE; + typedef enum _WER_REGISTER_FILE_TYPE { WerRegFileTypeUserDocument = 1, @@ -166,6 +176,7 @@ typedef struct _WER_EXCEPTION_INFORMATION HRESULT WINAPI WerAddExcludedApplication(PCWSTR, BOOL); HRESULT WINAPI WerRegisterFile(PCWSTR file, WER_REGISTER_FILE_TYPE regfiletype, DWORD flags); HRESULT WINAPI WerRemoveExcludedApplication(PCWSTR, BOOL); +HRESULT WINAPI WerReportAddFile(HREPORT, PCWSTR, WER_FILE_TYPE, DWORD); HRESULT WINAPI WerReportCloseHandle(HREPORT); HRESULT WINAPI WerReportCreate(PCWSTR, WER_REPORT_TYPE, PWER_REPORT_INFORMATION, HREPORT*); HRESULT WINAPI WerReportSetParameter(HREPORT, DWORD, PCWSTR, PCWSTR);