[FLTLIB] Sync with Wine Staging 1.7.47. CORE-9924
[reactos.git] / reactos / dll / win32 / fltlib / fltlib.c
index 50f46ac..b968c2b 100644 (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;