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);
60 IClassFactory IClassFactory_iface;
62 HRESULT (*cf)(IUnknown*,IUnknown**);
65 static inline ClassFactory *impl_from_IClassFactory(IClassFactory *iface)
67 return CONTAINING_RECORD(iface, ClassFactory, IClassFactory_iface);
70 static HRESULT WINAPI ClassFactory_QueryInterface(IClassFactory *iface,
71 REFIID riid, void **ppv)
75 if(IsEqualGUID(&IID_IUnknown, riid)) {
76 TRACE("(IID_IUnknown %p)\n", ppv);
78 }else if(IsEqualGUID(&IID_IClassFactory, riid)) {
79 TRACE("IID_IClassFactory %p)\n", ppv);
84 IUnknown_AddRef((IUnknown*)*ppv);
88 FIXME("(%s %p)\n", debugstr_guid(riid), ppv);
92 static ULONG WINAPI ClassFactory_AddRef(IClassFactory *iface)
97 static ULONG WINAPI ClassFactory_Release(IClassFactory *iface)
102 static HRESULT WINAPI ClassFactory_CreateInstance(IClassFactory *iface,
103 IUnknown *pOuter, REFIID riid, void **ppv)
105 ClassFactory *This = impl_from_IClassFactory(iface);
108 TRACE("(%p, %p, %s, %p)\n", iface, pOuter, debugstr_guid(riid), ppv);
110 ret = This->cf(pOuter, &obj);
114 ret = IUnknown_QueryInterface(obj,riid,ppv);
115 IUnknown_Release(obj);
119 static HRESULT WINAPI ClassFactory_LockServer(IClassFactory *iface, BOOL dolock)
121 FIXME("(%d)\n", dolock);
125 static const IClassFactoryVtbl ClassFactoryVtbl = {
126 ClassFactory_QueryInterface,
128 ClassFactory_Release,
129 ClassFactory_CreateInstance,
130 ClassFactory_LockServer
133 /******************************************************************
134 * DllGetClassObject (msimtf.@)
136 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
138 if(IsEqualGUID(&CLSID_CActiveIMM, rclsid)) {
139 static ClassFactory cf = {
140 { &ClassFactoryVtbl },
141 ActiveIMMApp_Constructor,
144 return IClassFactory_QueryInterface((IClassFactory*)&cf, riid, ppv);
147 FIXME("(%s %s %p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
148 return CLASS_E_CLASSNOTAVAILABLE;
151 /******************************************************************
152 * DllCanUnloadNow (msimtf.@)
154 HRESULT WINAPI DllCanUnloadNow(void)
159 /***********************************************************************
160 * DllRegisterServer (msimtf.@)
162 HRESULT WINAPI DllRegisterServer(void)
164 return __wine_register_resources( msimtf_instance );
167 /***********************************************************************
168 * DllUnregisterServer (msimtf.@)
170 HRESULT WINAPI DllUnregisterServer(void)
172 return __wine_unregister_resources( msimtf_instance );