fltlib: Add stub implementations of FilterFindFirst and FilterFindClose.

This commit is contained in:
Hans Leidekker 2010-05-14 15:36:25 +02:00 committed by Alexandre Julliard
parent ccbf4c1b94
commit 14e061a5c4
2 changed files with 21 additions and 2 deletions

View File

@ -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;
}

View File

@ -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