gdi32/tests: GetGlyphOutline should fail for a bitmap font.
[wine/multimedia.git] / dlls / wshom.ocx / wshom_main.c
blob1c6bb44c0196831e1b321880803e18c863f58549
1 /*
2 * Copyright 2011 Jacek Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include "wshom_private.h"
21 #include "initguid.h"
22 #include "wshom.h"
23 #include "rpcproxy.h"
25 #include "wine/debug.h"
27 WINE_DEFAULT_DEBUG_CHANNEL(wshom);
29 static HINSTANCE wshom_instance;
31 static ITypeLib *typelib;
32 static ITypeInfo *typeinfos[LAST_tid];
34 static REFIID tid_ids[] = {
35 &IID_NULL,
36 &IID_IWshShell3,
37 &IID_IWshCollection,
38 &IID_IWshShortcut
41 static HRESULT load_typelib(void)
43 HRESULT hres;
44 ITypeLib *tl;
46 hres = LoadRegTypeLib(&LIBID_IWshRuntimeLibrary, 1, 0, LOCALE_SYSTEM_DEFAULT, &tl);
47 if(FAILED(hres)) {
48 ERR("LoadRegTypeLib failed: %08x\n", hres);
49 return hres;
52 if(InterlockedCompareExchangePointer((void**)&typelib, tl, NULL))
53 ITypeLib_Release(tl);
54 return hres;
57 HRESULT get_typeinfo(tid_t tid, ITypeInfo **typeinfo)
59 HRESULT hres;
61 if (!typelib)
62 hres = load_typelib();
63 if (!typelib)
64 return hres;
66 if(!typeinfos[tid]) {
67 ITypeInfo *ti;
69 hres = ITypeLib_GetTypeInfoOfGuid(typelib, tid_ids[tid], &ti);
70 if(FAILED(hres)) {
71 ERR("GetTypeInfoOfGuid(%s) failed: %08x\n", debugstr_guid(tid_ids[tid]), hres);
72 return hres;
75 if(InterlockedCompareExchangePointer((void**)(typeinfos+tid), ti, NULL))
76 ITypeInfo_Release(ti);
79 *typeinfo = typeinfos[tid];
80 return S_OK;
83 static
84 void release_typelib(void)
86 unsigned i;
88 if(!typelib)
89 return;
91 for(i=0; i < sizeof(typeinfos)/sizeof(*typeinfos); i++)
92 if(typeinfos[i])
93 ITypeInfo_Release(typeinfos[i]);
95 ITypeLib_Release(typelib);
98 static HRESULT WINAPI ClassFactory_QueryInterface(IClassFactory *iface, REFIID riid, void **ppv)
100 *ppv = NULL;
102 if(IsEqualGUID(&IID_IUnknown, riid)) {
103 TRACE("(%p)->(IID_IUnknown %p)\n", iface, ppv);
104 *ppv = iface;
105 }else if(IsEqualGUID(&IID_IClassFactory, riid)) {
106 TRACE("(%p)->(IID_IClassFactory %p)\n", iface, ppv);
107 *ppv = iface;
110 if(*ppv) {
111 IUnknown_AddRef((IUnknown*)*ppv);
112 return S_OK;
115 FIXME("(%p)->(%s %p)\n", iface, debugstr_guid(riid), ppv);
116 return E_NOINTERFACE;
119 static ULONG WINAPI ClassFactory_AddRef(IClassFactory *iface)
121 TRACE("(%p)\n", iface);
122 return 2;
125 static ULONG WINAPI ClassFactory_Release(IClassFactory *iface)
127 TRACE("(%p)\n", iface);
128 return 1;
131 static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL fLock)
133 TRACE("(%p)->(%x)\n", iface, fLock);
134 return S_OK;
137 static const IClassFactoryVtbl WshShellFactoryVtbl = {
138 ClassFactory_QueryInterface,
139 ClassFactory_AddRef,
140 ClassFactory_Release,
141 WshShellFactory_CreateInstance,
142 ClassFactory_LockServer
145 static IClassFactory WshShellFactory = { &WshShellFactoryVtbl };
147 /******************************************************************
148 * DllMain (wshom.ocx.@)
150 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
152 TRACE("(%p %d %p)\n", hInstDLL, fdwReason, lpv);
154 switch(fdwReason)
156 case DLL_WINE_PREATTACH:
157 return FALSE; /* prefer native version */
158 case DLL_PROCESS_ATTACH:
159 wshom_instance = hInstDLL;
160 DisableThreadLibraryCalls(wshom_instance);
161 break;
162 case DLL_PROCESS_DETACH:
163 release_typelib();
164 break;
167 return TRUE;
170 /***********************************************************************
171 * DllGetClassObject (wshom.ocx.@)
173 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
175 if(IsEqualGUID(&CLSID_WshShell, rclsid)) {
176 TRACE("(CLSID_WshShell %s %p)\n", debugstr_guid(riid), ppv);
177 return IClassFactory_QueryInterface(&WshShellFactory, riid, ppv);
180 FIXME("%s %s %p\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
181 return CLASS_E_CLASSNOTAVAILABLE;
184 /***********************************************************************
185 * DllCanUnloadNow (wshom.ocx.@)
187 HRESULT WINAPI DllCanUnloadNow(void)
189 return S_FALSE;
192 /***********************************************************************
193 * DllRegisterServer (wshom.ocx.@)
195 HRESULT WINAPI DllRegisterServer(void)
197 TRACE("()\n");
198 return __wine_register_resources(wshom_instance);
201 /***********************************************************************
202 * DllUnregisterServer (wshom.ocx.@)
204 HRESULT WINAPI DllUnregisterServer(void)
206 TRACE("()\n");
207 return __wine_unregister_resources(wshom_instance);