fltlib: Add stub implementations of FilterFindFirst and FilterFindClose.
This commit is contained in:
parent
ccbf4c1b94
commit
14e061a5c4
|
@ -58,3 +58,22 @@ HRESULT WINAPI FilterConnectCommunicationPort(LPCWSTR lpPortName, DWORD dwOption
|
||||||
*hPort = INVALID_HANDLE_VALUE;
|
*hPort = INVALID_HANDLE_VALUE;
|
||||||
return E_NOTIMPL;
|
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)
|
@ stdcall FilterConnectCommunicationPort(wstr long ptr long ptr ptr)
|
||||||
@ stub FilterCreate
|
@ stub FilterCreate
|
||||||
@ stub FilterDetach
|
@ stub FilterDetach
|
||||||
@ stub FilterFindClose
|
@ stdcall FilterFindClose(ptr)
|
||||||
@ stub FilterFindFirst
|
@ stdcall FilterFindFirst(long ptr long ptr ptr)
|
||||||
@ stub FilterFindNext
|
@ stub FilterFindNext
|
||||||
@ stub FilterGetDosName
|
@ stub FilterGetDosName
|
||||||
@ stub FilterGetInformation
|
@ stub FilterGetInformation
|
||||||
|
|
Loading…
Reference in New Issue