2 * Copyright 2007 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
34 #include "wine/debug.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(msimtf);
38 extern HRESULT ActiveIMMApp_Constructor(IUnknown *punkOuter, IUnknown **ppOut);
40 static HINSTANCE msimtf_instance;
42 /******************************************************************
45 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
49 case DLL_WINE_PREATTACH:
50 return FALSE; /* prefer native version */
51 case DLL_PROCESS_ATTACH:
52 msimtf_instance = hInstDLL;
53 DisableThreadLibraryCalls(hInstDLL);
55 case DLL_PROCESS_DETACH:
62 IClassFactory IClassFactory_iface;
64 HRESULT (*cf)(IUnknown*,IUnknown**);
67 static inline ClassFactory *impl_from_IClassFactory(IClassFactory *iface)
69 return CONTAINING_RECORD(iface, ClassFactory, IClassFactory_iface);
72 static HRESULT WINAPI ClassFactory_QueryInterface(IClassFactory *iface,
73 REFIID riid, void **ppv)
77 if(IsEqualGUID(&IID_IUnknown, riid)) {
78 TRACE("(IID_IUnknown %p)\n", ppv);
80 }else if(IsEqualGUID(&IID_IClassFactory, riid)) {
81 TRACE("IID_IClassFactory %p)\n", ppv);
86 IUnknown_AddRef((IUnknown*)*ppv);
90 FIXME("(%s %p)\n", debugstr_guid(riid), ppv);
94 static ULONG WINAPI ClassFactory_AddRef(IClassFactory *iface)
99 static ULONG WINAPI ClassFactory_Release(IClassFactory *iface)
104 static HRESULT WINAPI ClassFactory_CreateInstance(IClassFactory *iface,
105 IUnknown *pOuter, REFIID riid, void **ppv)
107 ClassFactory *This = impl_from_IClassFactory(iface);
110 TRACE("(%p, %p, %s, %p)\n", iface, pOuter, debugstr_guid(riid), ppv);
112 ret = This->cf(pOuter, &obj);
116 ret = IUnknown_QueryInterface(obj,riid,ppv);
117 IUnknown_Release(obj);
121 static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL dolock)
123 FIXME("(%d)\n", dolock);
127 static const IClassFactoryVtbl ClassFactoryVtbl = {
128 ClassFactory_QueryInterface,
130 ClassFactory_Release,
131 ClassFactory_CreateInstance,
132 ClassFactory_LockServer
135 /******************************************************************
136 * DllGetClassObject (msimtf.@)
138 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
140 if(IsEqualGUID(&CLSID_CActiveIMM, rclsid)) {
141 static ClassFactory cf = {
142 { &ClassFactoryVtbl },
143 ActiveIMMApp_Constructor,
146 return IClassFactory_QueryInterface((IClassFactory*)&cf, riid, ppv);
149 FIXME("(%s %s %p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
150 return CLASS_E_CLASSNOTAVAILABLE;
153 /******************************************************************
154 * DllCanUnloadNow (msimtf.@)
156 HRESULT WINAPI DllCanUnloadNow(void)
161 /***********************************************************************
162 * DllRegisterServer (msimtf.@)
164 HRESULT WINAPI DllRegisterServer(void)
166 return __wine_register_resources( msimtf_instance, NULL );
169 /***********************************************************************
170 * DllUnregisterServer (msimtf.@)
172 HRESULT WINAPI DllUnregisterServer(void)
174 return __wine_unregister_resources( msimtf_instance, NULL );