2 * Copyright 1999, 2000 Peter Hunnisett
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "wine/debug.h"
26 WINE_DEFAULT_DEBUG_CHANNEL(dplay);
29 /*******************************************************************************
30 * DirectPlayLobby ClassFactory
36 ICOM_VFIELD(IClassFactory);
41 DP_and_DPL_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
42 ICOM_THIS(IClassFactoryImpl,iface);
44 FIXME("(%p)->(%s,%p),stub!\n",This,debugstr_guid(riid),ppobj);
50 DP_and_DPL_AddRef(LPCLASSFACTORY iface) {
51 ICOM_THIS(IClassFactoryImpl,iface);
55 static ULONG WINAPI DP_and_DPL_Release(LPCLASSFACTORY iface) {
56 ICOM_THIS(IClassFactoryImpl,iface);
57 /* static class (reference starts @ 1), won't ever be freed */
61 static HRESULT WINAPI DP_and_DPL_CreateInstance(
62 LPCLASSFACTORY iface,LPUNKNOWN pOuter,REFIID riid,LPVOID *ppobj
64 ICOM_THIS(IClassFactoryImpl,iface);
66 TRACE("(%p)->(%p,%s,%p)\n",This,pOuter,debugstr_guid(riid),ppobj);
68 if ( DPL_CreateInterface( riid, ppobj ) == S_OK )
72 else if ( DP_CreateInterface( riid, ppobj ) == S_OK )
80 static HRESULT WINAPI DP_and_DPL_LockServer(LPCLASSFACTORY iface,BOOL dolock) {
81 ICOM_THIS(IClassFactoryImpl,iface);
82 FIXME("(%p)->(%d),stub!\n",This,dolock);
86 static ICOM_VTABLE(IClassFactory) DP_and_DPL_Vtbl = {
87 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
88 DP_and_DPL_QueryInterface,
91 DP_and_DPL_CreateInstance,
95 static IClassFactoryImpl DP_and_DPL_CF = {&DP_and_DPL_Vtbl, 1 };
98 /*******************************************************************************
99 * DllGetClassObject [DPLAYX.11]
100 * Retrieves DP or DPL class object from a DLL object
103 * Docs say returns STDAPI
106 * rclsid [I] CLSID for the class object
107 * riid [I] Reference to identifier of interface for class object
108 * ppv [O] Address of variable to receive interface pointer for riid
112 * Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
115 DWORD WINAPI DPLAYX_DllGetClassObject(REFCLSID rclsid,REFIID riid,LPVOID *ppv)
117 TRACE("(%p,%p,%p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
119 if ( IsEqualCLSID( riid, &IID_IClassFactory ) )
121 *ppv = (LPVOID)&DP_and_DPL_CF;
122 IClassFactory_AddRef( (IClassFactory*)*ppv );
127 ERR("(%p,%p,%p): no interface found.\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
128 return CLASS_E_CLASSNOTAVAILABLE;