2 * msdaps initialisation.
4 * Copyright 2010 Huw Davies
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #define NONAMELESSUNION
25 #define NONAMELESSSTRUCT
34 #define DBINITCONSTANTS
37 #include "row_server.h"
39 #include "wine/debug.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(oledb);
43 extern BOOL WINAPI msdaps_DllMain(HINSTANCE, DWORD, LPVOID) DECLSPEC_HIDDEN;
44 extern HRESULT WINAPI msdaps_DllGetClassObject(REFCLSID, REFIID, LPVOID *) DECLSPEC_HIDDEN;
45 extern HRESULT WINAPI msdaps_DllCanUnloadNow(void) DECLSPEC_HIDDEN;
46 extern HRESULT WINAPI msdaps_DllRegisterServer(void) DECLSPEC_HIDDEN;
47 extern HRESULT WINAPI msdaps_DllUnregisterServer(void) DECLSPEC_HIDDEN;
49 /*****************************************************************************
52 BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
54 return msdaps_DllMain(instance, reason, reserved);
58 /******************************************************************************
63 const IClassFactoryVtbl *lpVtbl;
64 HRESULT (*create_object)( IUnknown*, LPVOID* );
67 static HRESULT WINAPI CF_QueryInterface(IClassFactory *iface, REFIID riid, void **obj)
69 cf *This = (cf *)iface;
71 TRACE("(%p, %s, %p)\n", This, debugstr_guid(riid), obj);
73 if( IsEqualCLSID( riid, &IID_IUnknown ) ||
74 IsEqualCLSID( riid, &IID_IClassFactory ) )
76 IClassFactory_AddRef( iface );
83 static ULONG WINAPI CF_AddRef(IClassFactory *iface)
88 static ULONG WINAPI CF_Release(IClassFactory *iface)
93 static HRESULT WINAPI CF_CreateInstance(IClassFactory *iface, IUnknown *pOuter, REFIID riid, void **obj)
95 cf *This = (cf *)iface;
99 TRACE("(%p, %p, %s, %p)\n", This, pOuter, debugstr_guid(riid), obj);
101 r = This->create_object( pOuter, (void **) &unk );
104 r = IUnknown_QueryInterface( unk, riid, obj );
105 IUnknown_Release( unk );
110 static HRESULT WINAPI CF_LockServer(IClassFactory *iface, BOOL dolock)
112 FIXME("(%p, %d): stub\n", iface, dolock);
116 static const IClassFactoryVtbl CF_Vtbl =
125 static cf row_server_cf = { &CF_Vtbl, create_row_server };
126 static cf row_proxy_cf = { &CF_Vtbl, create_row_marshal };
127 static cf rowset_server_cf = { &CF_Vtbl, create_rowset_server };
128 static cf rowset_proxy_cf = { &CF_Vtbl, create_rowset_marshal };
130 /***********************************************************************
133 HRESULT WINAPI DllGetClassObject(REFCLSID clsid, REFIID iid, LPVOID *obj)
135 TRACE("(%s, %s, %p)\n", debugstr_guid(clsid), debugstr_guid(iid), obj);
137 if (IsEqualCLSID(clsid, &CLSID_wine_row_server))
139 *obj = &row_server_cf;
143 if (IsEqualCLSID(clsid, &CLSID_wine_row_proxy))
145 *obj = &row_proxy_cf;
149 if (IsEqualCLSID(clsid, &CLSID_wine_rowset_server))
151 *obj = &rowset_server_cf;
155 if (IsEqualCLSID(clsid, &CLSID_wine_rowset_proxy))
157 *obj = &rowset_proxy_cf;
161 return msdaps_DllGetClassObject(clsid, iid, obj);
164 /***********************************************************************
167 HRESULT WINAPI DllCanUnloadNow(void)
169 return msdaps_DllCanUnloadNow();
172 /***********************************************************************
175 HRESULT WINAPI DllRegisterServer(void)
177 return msdaps_DllRegisterServer();
180 /***********************************************************************
181 * DllUnregisterServer
183 HRESULT WINAPI DllUnregisterServer(void)
185 return msdaps_DllUnregisterServer();