Commit ca097348 authored by Michael Müller's avatar Michael Müller Committed by Alexandre Julliard

fltlib: Add stub for FilterLoad.

parent c908c9c7
......@@ -79,13 +79,22 @@ HRESULT WINAPI FilterFindClose(HANDLE handle)
}
/**********************************************************************
* 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)
......
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