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
25 #include "wine/debug.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(dplay);
31 /*******************************************************************************
32 * DirectPlayLobby ClassFactory
38 ICOM_VFIELD(IClassFactory);
43 DP_and_DPL_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
44 ICOM_THIS(IClassFactoryImpl,iface);
46 FIXME("(%p)->(%s,%p),stub!\n",This,debugstr_guid(riid),ppobj);
52 DP_and_DPL_AddRef(LPCLASSFACTORY iface) {
53 ICOM_THIS(IClassFactoryImpl,iface);
57 static ULONG WINAPI DP_and_DPL_Release(LPCLASSFACTORY iface) {
58 ICOM_THIS(IClassFactoryImpl,iface);
59 /* static class (reference starts @ 1), won't ever be freed */
63 static HRESULT WINAPI DP_and_DPL_CreateInstance(
64 LPCLASSFACTORY iface,LPUNKNOWN pOuter,REFIID riid,LPVOID *ppobj
66 ICOM_THIS(IClassFactoryImpl,iface);
68 TRACE("(%p)->(%p,%s,%p)\n",This,pOuter,debugstr_guid(riid),ppobj);
70 if ( DPL_CreateInterface( riid, ppobj ) == S_OK )
74 else if ( DP_CreateInterface( riid, ppobj ) == S_OK )
82 static HRESULT WINAPI DP_and_DPL_LockServer(LPCLASSFACTORY iface,BOOL dolock) {
83 ICOM_THIS(IClassFactoryImpl,iface);
84 FIXME("(%p)->(%d),stub!\n",This,dolock);
88 static ICOM_VTABLE(IClassFactory) DP_and_DPL_Vtbl = {
89 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
90 DP_and_DPL_QueryInterface,
93 DP_and_DPL_CreateInstance,
97 static IClassFactoryImpl DP_and_DPL_CF = {&DP_and_DPL_Vtbl, 1 };
100 /*******************************************************************************
101 * DllGetClassObject [DPLAYX.11]
102 * Retrieves DP or DPL class object from a DLL object
105 * Docs say returns STDAPI
108 * rclsid [I] CLSID for the class object
109 * riid [I] Reference to identifier of interface for class object
110 * ppv [O] Address of variable to receive interface pointer for riid
114 * Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
117 DWORD WINAPI DPLAYX_DllGetClassObject(REFCLSID rclsid,REFIID riid,LPVOID *ppv)
119 TRACE("(%p,%p,%p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
121 if ( IsEqualCLSID( riid, &IID_IClassFactory ) )
123 *ppv = (LPVOID)&DP_and_DPL_CF;
124 IClassFactory_AddRef( (IClassFactory*)*ppv );
129 ERR("(%p,%p,%p): no interface found.\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
130 return CLASS_E_CLASSNOTAVAILABLE;