mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
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;
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user