wer: Add a stub for WerRemoveExcludedApplication.
This commit is contained in:
parent
48f3adc06b
commit
ac194c3873
|
@ -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 @@
|
||||||
@ 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
|
||||||
|
|
Loading…
Reference in New Issue