mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 13:33:30 +08:00
[FLTLIB] Sync with Wine Staging 1.7.47. CORE-9924
svn path=/trunk/; revision=68428
This commit is contained in:
parent
23857afe80
commit
e5a146feaf
@ -78,14 +78,23 @@ HRESULT WINAPI FilterFindClose(HANDLE handle)
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* FilterLoad (FLTLIB.@)
|
||||
*/
|
||||
HRESULT WINAPI FilterLoad(LPCWSTR filtername)
|
||||
{
|
||||
FIXME("(%s) stub\n", debugstr_w(filtername));
|
||||
return HRESULT_FROM_WIN32(ERROR_NOT_SUPPORTED);
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* FilterUnload (FLTLIB.@)
|
||||
*/
|
||||
HRESULT WINAPI FilterUnload(LPCWSTR lpFilterName)
|
||||
HRESULT WINAPI FilterUnload(LPCWSTR filtername)
|
||||
{
|
||||
FIXME("(%s) stub\n", debugstr_w(lpFilterName));
|
||||
FIXME("(%s) stub\n", debugstr_w(filtername));
|
||||
|
||||
if (!lpFilterName)
|
||||
if (!filtername)
|
||||
return HRESULT_FROM_WIN32(ERROR_INVALID_PARAMETER);
|
||||
|
||||
return S_OK;
|
||||
|
@ -16,7 +16,7 @@
|
||||
@ stub FilterInstanceFindFirst
|
||||
@ stub FilterInstanceFindNext
|
||||
@ stub FilterInstanceGetInformation
|
||||
@ stub FilterLoad
|
||||
@ stdcall FilterLoad(wstr)
|
||||
@ stub FilterReplyMessage
|
||||
@ stub FilterSendMessage
|
||||
@ stdcall FilterUnload(wstr)
|
||||
|
@ -68,7 +68,7 @@ reactos/dll/win32/dbghelp # Synced to WineStaging-1.7.37
|
||||
reactos/dll/win32/dciman32 # Synced to WineStaging-1.7.37
|
||||
reactos/dll/win32/dwmapi # Synced to WineStaging-1.7.37
|
||||
reactos/dll/win32/faultrep # Synced to WineStaging-1.7.37
|
||||
reactos/dll/win32/fltlib # Synced to WineStaging-1.7.37
|
||||
reactos/dll/win32/fltlib # Synced to WineStaging-1.7.47
|
||||
reactos/dll/win32/fusion # Synced to WineStaging-1.7.37
|
||||
reactos/dll/win32/gdiplus # Synced to WineStaging-1.7.37
|
||||
reactos/dll/win32/hhctrl.ocx # Synced to WineStaging-1.7.37
|
||||
|
Loading…
Reference in New Issue
Block a user