Module: wine Branch: master Commit: ac194c387316a0fcf46fee7896d276cae3a2d677 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ac194c387316a0fcf46fee7896...
Author: Detlef Riekenberg wine.dev@web.de Date: Tue Oct 26 11:37:16 2010 +0200
wer: Add a stub for WerRemoveExcludedApplication.
---
dlls/wer/main.c | 20 ++++++++++++++++++++ dlls/wer/wer.spec | 2 +- 2 files changed, 21 insertions(+), 1 deletions(-)
diff --git a/dlls/wer/main.c b/dlls/wer/main.c index 740462f..a283bae 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 d240a90..b50eb47 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