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
];
80 ITypeInfo_AddRef(*typeinfo
);
85 void release_typelib(void)
92 for(i
=0; i
< sizeof(typeinfos
)/sizeof(*typeinfos
); i
++)
94 ITypeInfo_Release(typeinfos
[i
]);
96 ITypeLib_Release(typelib
);
99 static HRESULT WINAPI
ClassFactory_QueryInterface(IClassFactory
*iface
, REFIID riid
, void **ppv
)
103 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
104 TRACE("(%p)->(IID_IUnknown %p)\n", iface
, ppv
);
106 }else if(IsEqualGUID(&IID_IClassFactory
, riid
)) {
107 TRACE("(%p)->(IID_IClassFactory %p)\n", iface
, ppv
);
112 IUnknown_AddRef((IUnknown
*)*ppv
);
116 FIXME("(%p)->(%s %p)\n", iface
, debugstr_guid(riid
), ppv
);
117 return E_NOINTERFACE
;
120 static ULONG WINAPI
ClassFactory_AddRef(IClassFactory
*iface
)
122 TRACE("(%p)\n", iface
);
126 static ULONG WINAPI
ClassFactory_Release(IClassFactory
*iface
)
128 TRACE("(%p)\n", iface
);
132 static HRESULT WINAPI
ClassFactory_LockServer(IClassFactory
*iface
, BOOL fLock
)
134 TRACE("(%p)->(%x)\n", iface
, fLock
);
138 static const IClassFactoryVtbl WshShellFactoryVtbl
= {
139 ClassFactory_QueryInterface
,
141 ClassFactory_Release
,
142 WshShellFactory_CreateInstance
,
143 ClassFactory_LockServer
146 static IClassFactory WshShellFactory
= { &WshShellFactoryVtbl
};
148 /******************************************************************
149 * DllMain (wshom.ocx.@)
151 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID lpv
)
153 TRACE("(%p %d %p)\n", hInstDLL
, fdwReason
, lpv
);
157 case DLL_WINE_PREATTACH
:
158 return FALSE
; /* prefer native version */
159 case DLL_PROCESS_ATTACH
:
160 wshom_instance
= hInstDLL
;
161 DisableThreadLibraryCalls(wshom_instance
);
163 case DLL_PROCESS_DETACH
:
172 /***********************************************************************
173 * DllGetClassObject (wshom.ocx.@)
175 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
*ppv
)
177 if(IsEqualGUID(&CLSID_WshShell
, rclsid
)) {
178 TRACE("(CLSID_WshShell %s %p)\n", debugstr_guid(riid
), ppv
);
179 return IClassFactory_QueryInterface(&WshShellFactory
, riid
, ppv
);
182 FIXME("%s %s %p\n", debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
183 return CLASS_E_CLASSNOTAVAILABLE
;
186 /***********************************************************************
187 * DllCanUnloadNow (wshom.ocx.@)
189 HRESULT WINAPI
DllCanUnloadNow(void)
194 /***********************************************************************
195 * DllRegisterServer (wshom.ocx.@)
197 HRESULT WINAPI
DllRegisterServer(void)
200 return __wine_register_resources(wshom_instance
);
203 /***********************************************************************
204 * DllUnregisterServer (wshom.ocx.@)
206 HRESULT WINAPI
DllUnregisterServer(void)
209 return __wine_unregister_resources(wshom_instance
);