Commit 14e061a5 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

fltlib: Add stub implementations of FilterFindFirst and FilterFindClose.

parent ccbf4c1b
......@@ -58,3 +58,22 @@ HRESULT WINAPI FilterConnectCommunicationPort(LPCWSTR lpPortName, DWORD dwOption
*hPort = INVALID_HANDLE_VALUE;
return E_NOTIMPL;
}
/**********************************************************************
* FilterFindFirst (FLTLIB.@)
*/
HRESULT WINAPI FilterFindFirst(DWORD class, LPVOID buffer, DWORD size, LPDWORD bytes_returned,
LPHANDLE handle)
{
FIXME("%u, %p, %u, %p, %p\n", class, buffer, size, bytes_returned, handle);
return HRESULT_FROM_WIN32(ERROR_NO_MORE_ITEMS);
}
/**********************************************************************
* FilterFindClose (FLTLIB.@)
*/
HRESULT WINAPI FilterFindClose(HANDLE handle)
{
FIXME("%p\n", handle);
return S_OK;
}
......@@ -4,8 +4,8 @@
@ stdcall FilterConnectCommunicationPort(wstr long ptr long ptr ptr)
@ stub FilterCreate
@ stub FilterDetach
@ stub FilterFindClose
@ stub FilterFindFirst
@ stdcall FilterFindClose(ptr)
@ stdcall FilterFindFirst(long ptr long ptr ptr)
@ stub FilterFindNext
@ stub FilterGetDosName
@ stub FilterGetInformation
......
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