2 * Copyright 2019 Hans Leidekker 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
25 #include "msado15_backcompat.h"
27 #include "wine/debug.h"
28 #include "wine/heap.h"
30 #include "msado15_private.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(msado15
);
34 static HINSTANCE hinstance
;
36 BOOL WINAPI
DllMain( HINSTANCE dll
, DWORD reason
, LPVOID reserved
)
40 case DLL_PROCESS_ATTACH
:
42 DisableThreadLibraryCalls( dll
);
48 typedef HRESULT (*fnCreateInstance
)( void **obj
);
52 IClassFactory IClassFactory_iface
;
53 fnCreateInstance pfnCreateInstance
;
56 static inline struct msadocf
*impl_from_IClassFactory( IClassFactory
*iface
)
58 return CONTAINING_RECORD( iface
, struct msadocf
, IClassFactory_iface
);
61 static HRESULT WINAPI
msadocf_QueryInterface( IClassFactory
*iface
, REFIID riid
, void **obj
)
63 if (IsEqualGUID( riid
, &IID_IUnknown
) || IsEqualGUID( riid
, &IID_IClassFactory
))
65 IClassFactory_AddRef( iface
);
69 FIXME( "interface %s not implemented\n", debugstr_guid(riid
) );
73 static ULONG WINAPI
msadocf_AddRef( IClassFactory
*iface
)
78 static ULONG WINAPI
msadocf_Release( IClassFactory
*iface
)
83 static HRESULT WINAPI
msadocf_CreateInstance( IClassFactory
*iface
, LPUNKNOWN outer
, REFIID riid
, void **obj
)
85 struct msadocf
*cf
= impl_from_IClassFactory( iface
);
89 TRACE( "%p, %s, %p\n", outer
, debugstr_guid(riid
), obj
);
93 return CLASS_E_NOAGGREGATION
;
95 hr
= cf
->pfnCreateInstance( (void **)&unknown
);
99 hr
= IUnknown_QueryInterface( unknown
, riid
, obj
);
100 IUnknown_Release( unknown
);
104 static HRESULT WINAPI
msadocf_LockServer( IClassFactory
*iface
, BOOL dolock
)
106 FIXME( "%p, %d\n", iface
, dolock
);
110 static const struct IClassFactoryVtbl msadocf_vtbl
=
112 msadocf_QueryInterface
,
115 msadocf_CreateInstance
,
119 static struct msadocf command_cf
= { { &msadocf_vtbl
}, Command_create
};
120 static struct msadocf connection_cf
= { { &msadocf_vtbl
}, Connection_create
};
121 static struct msadocf recordset_cf
= { { &msadocf_vtbl
}, Recordset_create
};
122 static struct msadocf stream_cf
= { { &msadocf_vtbl
}, Stream_create
};
124 /***********************************************************************
127 HRESULT WINAPI
DllGetClassObject( REFCLSID clsid
, REFIID iid
, void **obj
)
129 IClassFactory
*cf
= NULL
;
131 TRACE( "%s, %s, %p\n", debugstr_guid(clsid
), debugstr_guid(iid
), obj
);
133 if (IsEqualGUID( clsid
, &CLSID_Connection
))
135 cf
= &connection_cf
.IClassFactory_iface
;
137 else if (IsEqualGUID( clsid
, &CLSID_Recordset
))
139 cf
= &recordset_cf
.IClassFactory_iface
;
141 else if (IsEqualGUID( clsid
, &CLSID_Stream
))
143 cf
= &stream_cf
.IClassFactory_iface
;
145 else if (IsEqualGUID( clsid
, &CLSID_Command
))
147 cf
= &command_cf
.IClassFactory_iface
;
149 if (!cf
) return CLASS_E_CLASSNOTAVAILABLE
;
150 return IClassFactory_QueryInterface( cf
, iid
, obj
);
153 /******************************************************************
156 HRESULT WINAPI
DllCanUnloadNow(void)
161 /***********************************************************************
164 HRESULT WINAPI
DllRegisterServer( void )
166 return __wine_register_resources( hinstance
);
169 /***********************************************************************
170 * DllUnregisterServer
172 HRESULT WINAPI
DllUnregisterServer( void )
174 return __wine_unregister_resources( hinstance
);