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"
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[] = {
41 static HRESULT load_typelib(void)
46 hres = LoadRegTypeLib(&LIBID_IWshRuntimeLibrary, 1, 0, LOCALE_SYSTEM_DEFAULT, &tl);
48 ERR("LoadRegTypeLib failed: %08x\n", hres);
52 if(InterlockedCompareExchangePointer((void**)&typelib, tl, NULL))
57 HRESULT get_typeinfo(tid_t tid, ITypeInfo **typeinfo)
62 hres = load_typelib();
69 hres = ITypeLib_GetTypeInfoOfGuid(typelib, tid_ids[tid], &ti);
71 ERR("GetTypeInfoOfGuid(%s) failed: %08x\n", debugstr_guid(tid_ids[tid]), hres);
75 if(InterlockedCompareExchangePointer((void**)(typeinfos+tid), ti, NULL))
76 ITypeInfo_Release(ti);
79 *typeinfo = typeinfos[tid];
84 void release_typelib(void)
91 for(i=0; i < sizeof(typeinfos)/sizeof(*typeinfos); i++)
93 ITypeInfo_Release(typeinfos[i]);
95 ITypeLib_Release(typelib);
98 static HRESULT WINAPI ClassFactory_QueryInterface(IClassFactory *iface, REFIID riid, void **ppv)
102 if(IsEqualGUID(&IID_IUnknown, riid)) {
103 TRACE("(%p)->(IID_IUnknown %p)\n", iface, ppv);
105 }else if(IsEqualGUID(&IID_IClassFactory, riid)) {
106 TRACE("(%p)->(IID_IClassFactory %p)\n", iface, ppv);
111 IUnknown_AddRef((IUnknown*)*ppv);
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);
125 static ULONG WINAPI ClassFactory_Release(IClassFactory *iface)
127 TRACE("(%p)\n", iface);
131 static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL fLock)
133 TRACE("(%p)->(%x)\n", iface, fLock);
137 static const IClassFactoryVtbl WshShellFactoryVtbl = {
138 ClassFactory_QueryInterface,
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);
156 case DLL_WINE_PREATTACH:
157 return FALSE; /* prefer native version */
158 case DLL_PROCESS_ATTACH:
159 wshom_instance = hInstDLL;
160 DisableThreadLibraryCalls(wshom_instance);
162 case DLL_PROCESS_DETACH:
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)
192 /***********************************************************************
193 * DllRegisterServer (wshom.ocx.@)
195 HRESULT WINAPI DllRegisterServer(void)
198 return __wine_register_resources(wshom_instance);
201 /***********************************************************************
202 * DllUnregisterServer (wshom.ocx.@)
204 HRESULT WINAPI DllUnregisterServer(void)
207 return __wine_unregister_resources(wshom_instance);