ddraw: Set dwMaxVertexCount to 2048.
[wine.git] / dlls / query / query_main.c
blob9e27986e022b2bdcff659f08fe1d76e7ae8189f7
1 /*
2 * Query Implementation
4 * Copyright 2006 Mike McCormack
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #define COBJMACROS
24 #include <stdarg.h>
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winuser.h"
29 #include "winreg.h"
30 #include "ole2.h"
31 #include "ntquery.h"
32 #include "cierror.h"
33 #include "initguid.h"
35 #include "wine/debug.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(query);
39 /***********************************************************************
40 * DllGetClassObject (QUERY.@)
42 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
44 FIXME("%s %s %p\n", debugstr_guid(rclsid), debugstr_guid(iid), ppv);
46 return CLASS_E_CLASSNOTAVAILABLE;
49 HRESULT WINAPI CIState( WCHAR const *pwcsCat, WCHAR const *pwcsMachine, CI_STATE *pCiState)
51 FIXME("%s %s %p\n", debugstr_w(pwcsCat), debugstr_w(pwcsMachine), pCiState);
52 return CI_E_NOT_RUNNING;
55 HRESULT WINAPI LocateCatalogsA(CHAR const *pwszScope, ULONG iBm,
56 CHAR *pwszMachine, ULONG *pcMachine,
57 CHAR *pwszCat, ULONG *pcCat)
60 FIXME("%s %lu %p %p %p %p\n", debugstr_a(pwszScope),
61 iBm, pwszMachine, pcMachine, pwszCat, pcCat);
62 return CI_E_NOT_RUNNING;
65 HRESULT WINAPI LocateCatalogsW(WCHAR const *pwszScope, ULONG iBm,
66 WCHAR *pwszMachine, ULONG *pcMachine,
67 WCHAR *pwszCat, ULONG *pcCat)
70 FIXME("%s %lu %p %p %p %p\n", debugstr_w(pwszScope),
71 iBm, pwszMachine, pcMachine, pwszCat, pcCat);
72 return CI_E_NOT_RUNNING;
75 HRESULT WINAPI LoadIFilter(WCHAR const *pwcsPath, IUnknown *pUnkOuter, void **ppIUnk)
77 FIXME("%s %p %p\n", debugstr_w(pwcsPath), pUnkOuter, ppIUnk);
78 *ppIUnk = NULL;
79 return E_NOTIMPL;