query: Add a stub implementation for LocateCatalogs.

This commit is contained in:
Mike McCormack 2006-07-24 11:55:32 +09:00 committed by Alexandre Julliard
parent 6ff25905b0
commit c307df85cc
2 changed files with 22 additions and 2 deletions

View File

@ -36,8 +36,8 @@
@ stub LoadIFilter @ stub LoadIFilter
@ stub LoadTextFilter @ stub LoadTextFilter
@ stub LocateCatalogs @ stub LocateCatalogs
@ stub LocateCatalogsA @ stdcall LocateCatalogsA(str long ptr ptr ptr ptr)
@ stub LocateCatalogsW @ stdcall LocateCatalogsW(wstr long ptr ptr ptr ptr)
@ stub SetCatalogState @ stub SetCatalogState
@ stub SetupCache @ stub SetupCache
@ stub SetupCacheEx @ stub SetupCacheEx

View File

@ -76,3 +76,23 @@ HRESULT WINAPI CIState( WCHAR const *pwcsCat, WCHAR const *pwcsMachine, CI_STATE
FIXME("%s %s %p\n", debugstr_w(pwcsCat), debugstr_w(pwcsMachine), pCiState); FIXME("%s %s %p\n", debugstr_w(pwcsCat), debugstr_w(pwcsMachine), pCiState);
return CI_E_NOT_RUNNING; return CI_E_NOT_RUNNING;
} }
HRESULT WINAPI LocateCatalogsA(CHAR const *pwszScope, ULONG iBm,
CHAR *pwszMachine, ULONG *pcMachine,
CHAR *pwszCat, ULONG *pcCat)
{
FIXME("%s %lu %p %p %p %p\n", debugstr_a(pwszScope),
iBm, pwszMachine, pcMachine, pwszCat, pcCat);
return CI_E_NOT_RUNNING;
}
HRESULT WINAPI LocateCatalogsW(WCHAR const *pwszScope, ULONG iBm,
WCHAR *pwszMachine, ULONG *pcMachine,
WCHAR *pwszCat, ULONG *pcCat)
{
FIXME("%s %lu %p %p %p %p\n", debugstr_w(pwszScope),
iBm, pwszMachine, pcMachine, pwszCat, pcCat);
return CI_E_NOT_RUNNING;
}