[FLTLIB] Sync with Wine Staging 1.7.47. CORE-9924

svn path=/trunk/; revision=68428
This commit is contained in:
Amine Khaldi 2015-07-19 13:14:56 +00:00
parent 23857afe80
commit e5a146feaf
3 changed files with 14 additions and 5 deletions

View File

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

View File

@ -16,7 +16,7 @@
@ stub FilterInstanceFindFirst
@ stub FilterInstanceFindNext
@ stub FilterInstanceGetInformation
@ stub FilterLoad
@ stdcall FilterLoad(wstr)
@ stub FilterReplyMessage
@ stub FilterSendMessage
@ stdcall FilterUnload(wstr)

View File

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