More comcat.dll implementation, swprintf fix, winerror.h additions.
[wine] / dlls / comcat / comcat_main.c
1 /*
2  *      exported dll functions for comcat.dll
3  *
4  * Copyright (C) 2002 John K. Hohm
5  *
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.
10  *
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.
15  *
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "comcat.h"
22
23 #include "wine/debug.h"
24
25 WINE_DEFAULT_DEBUG_CHANNEL(ole);
26
27 DWORD dll_ref = 0;
28
29 /***********************************************************************
30  *              DllGetClassObject (COMCAT.@)
31  */
32 HRESULT WINAPI COMCAT_DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
33 {
34     *ppv = NULL;
35     if (IsEqualGUID(rclsid, &CLSID_StdComponentCategoriesMgr)) {
36         return IClassFactory_QueryInterface((LPCLASSFACTORY)&COMCAT_ClassFactory, iid, ppv);
37     }
38     FIXME("\n\tCLSID:\t%s,\n\tIID:\t%s\n",debugstr_guid(rclsid),debugstr_guid(iid));
39     return CLASS_E_CLASSNOTAVAILABLE;
40 }
41
42 /***********************************************************************
43  *              DllCanUnloadNow (COMCAT.@)
44  */
45 HRESULT WINAPI COMCAT_DllCanUnloadNow()
46 {
47     return dll_ref != 0 ? S_FALSE : S_OK;
48 }
49
50 /***********************************************************************
51  *              DllRegisterServer (COMCAT.@)
52  */
53
54 HRESULT WINAPI COMCAT_DllRegisterServer()
55 {
56     FIXME("(): stub\n");
57     return E_FAIL;
58 }
59
60 /***********************************************************************
61  *              DllUnregisterServer (COMCAT.@)
62  */
63
64 HRESULT WINAPI COMCAT_DllUnregisterServer()
65 {
66     FIXME("(): stub\n");
67     return E_FAIL;
68 }