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 inline struct provideclassinfo
*impl_from_IProvideClassInfo(IProvideClassInfo
*iface
)
33 return CONTAINING_RECORD(iface
, struct provideclassinfo
, IProvideClassInfo_iface
);
36 static ITypeLib
*typelib
;
37 static ITypeInfo
*typeinfos
[LAST_tid
];
39 static REFIID tid_ids
[] = {
48 static HRESULT
load_typelib(void)
56 hres
= LoadRegTypeLib(&LIBID_IWshRuntimeLibrary
, 1, 0, LOCALE_SYSTEM_DEFAULT
, &tl
);
58 ERR("LoadRegTypeLib failed: %08x\n", hres
);
62 if(InterlockedCompareExchangePointer((void**)&typelib
, tl
, NULL
))
67 static HRESULT
get_typeinfo_of_guid(const GUID
*guid
, ITypeInfo
**tinfo
)
71 if(FAILED(hres
= load_typelib()))
74 return ITypeLib_GetTypeInfoOfGuid(typelib
, guid
, tinfo
);
77 HRESULT
get_typeinfo(tid_t tid
, ITypeInfo
**typeinfo
)
81 if (FAILED(hres
= load_typelib()))
87 hres
= ITypeLib_GetTypeInfoOfGuid(typelib
, tid_ids
[tid
], &ti
);
89 ERR("GetTypeInfoOfGuid(%s) failed: %08x\n", debugstr_guid(tid_ids
[tid
]), hres
);
93 if(InterlockedCompareExchangePointer((void**)(typeinfos
+tid
), ti
, NULL
))
94 ITypeInfo_Release(ti
);
97 *typeinfo
= typeinfos
[tid
];
98 ITypeInfo_AddRef(*typeinfo
);
103 void release_typelib(void)
110 for(i
= 0; i
< ARRAY_SIZE(typeinfos
); i
++)
112 ITypeInfo_Release(typeinfos
[i
]);
114 ITypeLib_Release(typelib
);
117 static HRESULT WINAPI
provideclassinfo_QueryInterface(IProvideClassInfo
*iface
, REFIID riid
, void **obj
)
119 struct provideclassinfo
*This
= impl_from_IProvideClassInfo(iface
);
121 TRACE("(%p)->(%s %p)\n", This
, debugstr_guid(riid
), obj
);
123 if (IsEqualIID(riid
, &IID_IProvideClassInfo
)) {
125 IProvideClassInfo_AddRef(iface
);
129 return IUnknown_QueryInterface(This
->outer
, riid
, obj
);
132 static ULONG WINAPI
provideclassinfo_AddRef(IProvideClassInfo
*iface
)
134 struct provideclassinfo
*This
= impl_from_IProvideClassInfo(iface
);
135 return IUnknown_AddRef(This
->outer
);
138 static ULONG WINAPI
provideclassinfo_Release(IProvideClassInfo
*iface
)
140 struct provideclassinfo
*This
= impl_from_IProvideClassInfo(iface
);
141 return IUnknown_Release(This
->outer
);
144 static HRESULT WINAPI
provideclassinfo_GetClassInfo(IProvideClassInfo
*iface
, ITypeInfo
**ti
)
146 struct provideclassinfo
*This
= impl_from_IProvideClassInfo(iface
);
148 TRACE("(%p)->(%p)\n", This
, ti
);
150 return get_typeinfo_of_guid(This
->guid
, ti
);
153 static const IProvideClassInfoVtbl provideclassinfovtbl
= {
154 provideclassinfo_QueryInterface
,
155 provideclassinfo_AddRef
,
156 provideclassinfo_Release
,
157 provideclassinfo_GetClassInfo
160 void init_classinfo(const GUID
*guid
, IUnknown
*outer
, struct provideclassinfo
*classinfo
)
162 classinfo
->IProvideClassInfo_iface
.lpVtbl
= &provideclassinfovtbl
;
163 classinfo
->outer
= outer
;
164 classinfo
->guid
= guid
;
167 static HRESULT WINAPI
ClassFactory_QueryInterface(IClassFactory
*iface
, REFIID riid
, void **ppv
)
171 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
172 TRACE("(%p)->(IID_IUnknown %p)\n", iface
, ppv
);
174 }else if(IsEqualGUID(&IID_IClassFactory
, riid
)) {
175 TRACE("(%p)->(IID_IClassFactory %p)\n", iface
, ppv
);
180 IUnknown_AddRef((IUnknown
*)*ppv
);
184 WARN("(%p)->(%s %p)\n", iface
, debugstr_guid(riid
), ppv
);
185 return E_NOINTERFACE
;
188 static ULONG WINAPI
ClassFactory_AddRef(IClassFactory
*iface
)
190 TRACE("(%p)\n", iface
);
194 static ULONG WINAPI
ClassFactory_Release(IClassFactory
*iface
)
196 TRACE("(%p)\n", iface
);
200 static HRESULT WINAPI
ClassFactory_LockServer(IClassFactory
*iface
, BOOL fLock
)
202 TRACE("(%p)->(%x)\n", iface
, fLock
);
206 static const IClassFactoryVtbl WshShellFactoryVtbl
= {
207 ClassFactory_QueryInterface
,
209 ClassFactory_Release
,
210 WshShellFactory_CreateInstance
,
211 ClassFactory_LockServer
214 static IClassFactory WshShellFactory
= { &WshShellFactoryVtbl
};
216 /******************************************************************
217 * DllMain (wshom.ocx.@)
219 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID lpv
)
221 TRACE("(%p %d %p)\n", hInstDLL
, fdwReason
, lpv
);
225 case DLL_WINE_PREATTACH
:
226 return FALSE
; /* prefer native version */
227 case DLL_PROCESS_ATTACH
:
228 wshom_instance
= hInstDLL
;
229 DisableThreadLibraryCalls(wshom_instance
);
231 case DLL_PROCESS_DETACH
:
240 /***********************************************************************
241 * DllGetClassObject (wshom.ocx.@)
243 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
*ppv
)
245 if(IsEqualGUID(&CLSID_WshShell
, rclsid
)) {
246 TRACE("(CLSID_WshShell %s %p)\n", debugstr_guid(riid
), ppv
);
247 return IClassFactory_QueryInterface(&WshShellFactory
, riid
, ppv
);
250 FIXME("%s %s %p\n", debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
251 return CLASS_E_CLASSNOTAVAILABLE
;
254 /***********************************************************************
255 * DllCanUnloadNow (wshom.ocx.@)
257 HRESULT WINAPI
DllCanUnloadNow(void)
262 /***********************************************************************
263 * DllRegisterServer (wshom.ocx.@)
265 HRESULT WINAPI
DllRegisterServer(void)
268 return __wine_register_resources(wshom_instance
);
271 /***********************************************************************
272 * DllUnregisterServer (wshom.ocx.@)
274 HRESULT WINAPI
DllUnregisterServer(void)
277 return __wine_unregister_resources(wshom_instance
);