mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
fltlib: Add stub for FilterUnload.
This commit is contained in:
parent
ecdd6c58c5
commit
4c6c8ed041
2 changed files with 16 additions and 3 deletions
|
@ -65,7 +65,7 @@ HRESULT WINAPI FilterConnectCommunicationPort(LPCWSTR lpPortName, DWORD dwOption
|
||||||
HRESULT WINAPI FilterFindFirst(DWORD class, LPVOID buffer, DWORD size, LPDWORD bytes_returned,
|
HRESULT WINAPI FilterFindFirst(DWORD class, LPVOID buffer, DWORD size, LPDWORD bytes_returned,
|
||||||
LPHANDLE handle)
|
LPHANDLE handle)
|
||||||
{
|
{
|
||||||
FIXME("%u, %p, %u, %p, %p\n", class, buffer, size, bytes_returned, handle);
|
FIXME("(%u, %p, %u, %p, %p) stub\n", class, buffer, size, bytes_returned, handle);
|
||||||
return HRESULT_FROM_WIN32(ERROR_NO_MORE_ITEMS);
|
return HRESULT_FROM_WIN32(ERROR_NO_MORE_ITEMS);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -74,6 +74,19 @@ HRESULT WINAPI FilterFindFirst(DWORD class, LPVOID buffer, DWORD size, LPDWORD b
|
||||||
*/
|
*/
|
||||||
HRESULT WINAPI FilterFindClose(HANDLE handle)
|
HRESULT WINAPI FilterFindClose(HANDLE handle)
|
||||||
{
|
{
|
||||||
FIXME("%p\n", handle);
|
FIXME("(%p) stub\n", handle);
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**********************************************************************
|
||||||
|
* FilterUnload (FLTLIB.@)
|
||||||
|
*/
|
||||||
|
HRESULT WINAPI FilterUnload(LPCWSTR lpFilterName)
|
||||||
|
{
|
||||||
|
FIXME("(%s) stub\n", debugstr_w(lpFilterName));
|
||||||
|
|
||||||
|
if (!lpFilterName)
|
||||||
|
return HRESULT_FROM_WIN32(ERROR_INVALID_PARAMETER);
|
||||||
|
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
@ stub FilterLoad
|
@ stub FilterLoad
|
||||||
@ stub FilterReplyMessage
|
@ stub FilterReplyMessage
|
||||||
@ stub FilterSendMessage
|
@ stub FilterSendMessage
|
||||||
@ stub FilterUnload
|
@ stdcall FilterUnload(wstr)
|
||||||
@ stub FilterVolumeClose
|
@ stub FilterVolumeClose
|
||||||
@ stub FilterVolumeFindClose
|
@ stub FilterVolumeFindClose
|
||||||
@ stub FilterVolumeFindFirst
|
@ stub FilterVolumeFindFirst
|
||||||
|
|
Loading…
Reference in a new issue