query: Add stub for LoadIFilter.
This commit is contained in:
parent
7844535700
commit
ba6f99c239
|
@ -33,7 +33,7 @@
|
||||||
@ stub InitializeFILTERPerformanceData
|
@ stub InitializeFILTERPerformanceData
|
||||||
@ stub _LoadBHIFilter@16
|
@ stub _LoadBHIFilter@16
|
||||||
@ stub LoadBinaryFilter
|
@ stub LoadBinaryFilter
|
||||||
@ stub LoadIFilter
|
@ stdcall LoadIFilter(wstr ptr ptr)
|
||||||
@ stub LoadTextFilter
|
@ stub LoadTextFilter
|
||||||
@ stub LocateCatalogs
|
@ stub LocateCatalogs
|
||||||
@ stdcall LocateCatalogsA(str long ptr ptr ptr ptr)
|
@ stdcall LocateCatalogsA(str long ptr ptr ptr ptr)
|
||||||
|
|
|
@ -98,3 +98,10 @@ HRESULT WINAPI LocateCatalogsW(WCHAR const *pwszScope, ULONG iBm,
|
||||||
iBm, pwszMachine, pcMachine, pwszCat, pcCat);
|
iBm, pwszMachine, pcMachine, pwszCat, pcCat);
|
||||||
return CI_E_NOT_RUNNING;
|
return CI_E_NOT_RUNNING;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
HRESULT WINAPI LoadIFilter(WCHAR const *pwcsPath, IUnknown *pUnkOuter, void **ppIUnk)
|
||||||
|
{
|
||||||
|
FIXME("%s %p %p\n", debugstr_w(pwcsPath), pUnkOuter, ppIUnk);
|
||||||
|
*ppIUnk = NULL;
|
||||||
|
return E_NOTIMPL;
|
||||||
|
}
|
||||||
|
|
|
@ -31,8 +31,8 @@
|
||||||
#include "winbase.h"
|
#include "winbase.h"
|
||||||
#include "winreg.h"
|
#include "winreg.h"
|
||||||
#include "winuser.h"
|
#include "winuser.h"
|
||||||
#include "ntquery.h"
|
|
||||||
#include "shlwapi.h"
|
#include "shlwapi.h"
|
||||||
|
#include "ntquery.h"
|
||||||
#include "shlobj.h"
|
#include "shlobj.h"
|
||||||
#include "shresdef.h"
|
#include "shresdef.h"
|
||||||
#include "shellfolder.h"
|
#include "shellfolder.h"
|
||||||
|
|
|
@ -74,6 +74,7 @@ STDAPI CIState(WCHAR const *, WCHAR const *, CI_STATE *);
|
||||||
STDAPI LocateCatalogsA(CHAR const *, ULONG, CHAR *, ULONG *, CHAR *, ULONG *);
|
STDAPI LocateCatalogsA(CHAR const *, ULONG, CHAR *, ULONG *, CHAR *, ULONG *);
|
||||||
STDAPI LocateCatalogsW(WCHAR const *, ULONG, WCHAR *, ULONG *, WCHAR *, ULONG *);
|
STDAPI LocateCatalogsW(WCHAR const *, ULONG, WCHAR *, ULONG *, WCHAR *, ULONG *);
|
||||||
#define LocateCatalogs WINELIB_NAME_AW(LocateCatalogs)
|
#define LocateCatalogs WINELIB_NAME_AW(LocateCatalogs)
|
||||||
|
STDAPI LoadIFilter(WCHAR const *, IUnknown *, void **);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue