From ac194c387316a0fcf46fee7896d276cae3a2d677 Mon Sep 17 00:00:00 2001 From: Detlef Riekenberg Date: Tue, 26 Oct 2010 11:37:16 +0200 Subject: [PATCH] wer: Add a stub for WerRemoveExcludedApplication. --- dlls/wer/main.c | 20 ++++++++++++++++++++ dlls/wer/wer.spec | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/dlls/wer/main.c b/dlls/wer/main.c index 740462f1886..a283baeb028 100644 --- a/dlls/wer/main.c +++ b/dlls/wer/main.c @@ -49,3 +49,23 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) 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; +} diff --git a/dlls/wer/wer.spec b/dlls/wer/wer.spec index d240a90ef50..b50eb477f5f 100644 --- a/dlls/wer/wer.spec +++ b/dlls/wer/wer.spec @@ -62,7 +62,7 @@ @ stub WerpSubmitReportFromStore @ stub WerpSvcReportFromMachineQueue @ stdcall WerAddExcludedApplication(wstr long) -@ stub WerRemoveExcludedApplication +@ stdcall WerRemoveExcludedApplication(wstr long) @ stub WerReportAddDump @ stub WerReportAddFile @ stub WerReportCloseHandle -- 2.11.4.GIT