fltlib: Add stub for FilterLoad.
This commit is contained in:
parent
c908c9c7c9
commit
ca0973486a
|
@ -78,14 +78,23 @@ HRESULT WINAPI FilterFindClose(HANDLE handle)
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* FilterLoad (FLTLIB.@)
|
||||
*/
|
||||
HRESULT WINAPI FilterLoad(LPCWSTR filtername)
|
||||
{
|
||||
FIXME("(%s) stub\n", debugstr_w(filtername));
|
||||
return HRESULT_FROM_WIN32(ERROR_NOT_SUPPORTED);
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* FilterUnload (FLTLIB.@)
|
||||
*/
|
||||
HRESULT WINAPI FilterUnload(LPCWSTR lpFilterName)
|
||||
HRESULT WINAPI FilterUnload(LPCWSTR filtername)
|
||||
{
|
||||
FIXME("(%s) stub\n", debugstr_w(lpFilterName));
|
||||
FIXME("(%s) stub\n", debugstr_w(filtername));
|
||||
|
||||
if (!lpFilterName)
|
||||
if (!filtername)
|
||||
return HRESULT_FROM_WIN32(ERROR_INVALID_PARAMETER);
|
||||
|
||||
return S_OK;
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
@ stub FilterInstanceFindFirst
|
||||
@ stub FilterInstanceFindNext
|
||||
@ stub FilterInstanceGetInformation
|
||||
@ stub FilterLoad
|
||||
@ stdcall FilterLoad(wstr)
|
||||
@ stub FilterReplyMessage
|
||||
@ stub FilterSendMessage
|
||||
@ stdcall FilterUnload(wstr)
|
||||
|
|
Loading…
Reference in New Issue