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

wer: Add a stub for WerRemoveExcludedApplication.

parent 48f3adc0
...@@ -49,3 +49,23 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) ...@@ -49,3 +49,23 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return TRUE; return TRUE;
} }
/***********************************************************************
* WerRemoveExcludedApplication (wer.@)
*
* remove an application from the exclusion list
*
* PARAMS
* exeName [i] The application name
* allUsers [i] for all users (TRUE) or for the current user (FALSE)
*
* RESULTS
* SUCCESS S_OK
* FAILURE A HRESULT error code
*
*/
HRESULT WINAPI WerRemoveExcludedApplication(PCWSTR exeName, BOOL allUsers)
{
FIXME("(%s, %d) :stub\n",debugstr_w(exeName), allUsers);
return E_NOTIMPL;
}
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
@ stub WerpSubmitReportFromStore @ stub WerpSubmitReportFromStore
@ stub WerpSvcReportFromMachineQueue @ stub WerpSvcReportFromMachineQueue
@ stdcall WerAddExcludedApplication(wstr long) @ stdcall WerAddExcludedApplication(wstr long)
@ stub WerRemoveExcludedApplication @ stdcall WerRemoveExcludedApplication(wstr long)
@ stub WerReportAddDump @ stub WerReportAddDump
@ stub WerReportAddFile @ stub WerReportAddFile
@ stub WerReportCloseHandle @ stub WerReportCloseHandle
......
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