Commit f0a4bc9e authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

wer: Add a stub for WerReportSetParameter.

parent b55e5a00
......@@ -127,3 +127,26 @@ HRESULT WINAPI WerReportCreate(PCWSTR eventtype, WER_REPORT_TYPE reporttype, PWE
return E_NOTIMPL;
}
/***********************************************************************
* WerReportSetParameter (wer.@)
*
* Set one of 10 parameter / value pairs for a report handle
*
* PARAMS
* hreport [i] error reporting handle to add the parameter
* id [i] parameter to set (WER_P0 upto WER_P9)
* name [i] optional name of the parameter
* value [i] value of the parameter
*
* RETURNS
* Success: S_OK
* Failure: A HRESULT error code
*
*/
HRESULT WINAPI WerReportSetParameter(HREPORT hreport, DWORD id, PCWSTR name, PCWSTR value)
{
FIXME("(%p, %d, %s, %s) :stub\n", hreport, id, debugstr_w(name), debugstr_w(value));
return E_NOTIMPL;
}
......@@ -67,7 +67,7 @@
@ stub WerReportAddFile
@ stdcall WerReportCloseHandle(ptr)
@ stdcall WerReportCreate(wstr long ptr ptr)
@ stub WerReportSetParameter
@ stdcall WerReportSetParameter(ptr long wstr wstr)
@ stub WerReportSetUIOption
@ stub WerReportSubmit
@ stub WerpGetReportConsent
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment