4 * Copyright 2004 Raphael Junqueira
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
32 #include "wine/debug.h"
36 *#include "dplobby8.h"
37 *#include "dplay8sp.h"
39 #include "dpnet_private.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(dpnet
);
43 /* At process attach */
44 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID lpvReserved
)
46 TRACE("%p,%lx,%p\n", hInstDLL
, fdwReason
, lpvReserved
);
47 if (fdwReason
== DLL_PROCESS_ATTACH
) {
48 DisableThreadLibraryCalls(hInstDLL
);
53 /***********************************************************************
54 * DirectPlay8Create (DPNET.@)
56 HRESULT WINAPI
DirectPlay8Create(REFGUID lpGUID
, LPVOID
*ppvInt
, LPUNKNOWN punkOuter
)
58 TRACE("(%s, %p, %p): stub\n", debugstr_guid(lpGUID
), ppvInt
, punkOuter
);
62 /*******************************************************************************
63 * DirectPlay ClassFactory
68 IClassFactoryVtbl
*lpVtbl
;
71 HRESULT (*pfnCreateInstanceFactory
)(LPCLASSFACTORY iface
, LPUNKNOWN punkOuter
, REFIID riid
, LPVOID
*ppobj
);
74 static HRESULT WINAPI
DICF_QueryInterface(LPCLASSFACTORY iface
,REFIID riid
,LPVOID
*ppobj
) {
75 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
77 FIXME("(%p)->(%s,%p),stub!\n",This
,debugstr_guid(riid
),ppobj
);
81 static ULONG WINAPI
DICF_AddRef(LPCLASSFACTORY iface
) {
82 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
86 static ULONG WINAPI
DICF_Release(LPCLASSFACTORY iface
) {
87 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
88 /* static class, won't be freed */
92 static HRESULT WINAPI
DICF_CreateInstance(LPCLASSFACTORY iface
,LPUNKNOWN pOuter
,REFIID riid
,LPVOID
*ppobj
) {
93 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
95 TRACE("(%p)->(%p,%s,%p)\n",This
,pOuter
,debugstr_guid(riid
),ppobj
);
96 return This
->pfnCreateInstanceFactory(iface
, pOuter
, riid
, ppobj
);
99 static HRESULT WINAPI
DICF_LockServer(LPCLASSFACTORY iface
,BOOL dolock
) {
100 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
101 FIXME("(%p)->(%d),stub!\n",This
,dolock
);
105 static IClassFactoryVtbl DICF_Vtbl
= {
113 static IClassFactoryImpl DPNET_CFS
[] = {
114 { &DICF_Vtbl
, 1, &CLSID_DirectPlay8Client
, DPNET_CreateDirectPlay8Client
},
115 { &DICF_Vtbl
, 1, &CLSID_DirectPlay8Server
, DPNET_CreateDirectPlay8Server
},
116 { &DICF_Vtbl
, 1, &CLSID_DirectPlay8Peer
, DPNET_CreateDirectPlay8Peer
},
117 { &DICF_Vtbl
, 1, &CLSID_DirectPlay8Address
, DPNET_CreateDirectPlay8Address
},
118 { NULL
, 0, NULL
, NULL
}
121 /***********************************************************************
122 * DllCanUnloadNow (DPNET.@)
124 BOOL WINAPI
DPNET_DllCanUnloadNow(void)
129 /***********************************************************************
130 * DllGetClassObject (DPNET.@)
132 HRESULT WINAPI
DPNET_DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
*ppv
)
136 TRACE("(%p,%p,%p)\n", debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
138 if ( IsEqualCLSID( &IID_IClassFactory, riid ) ) {
139 *ppv = (LPVOID)&DPNET_CF;
140 IClassFactory_AddRef((IClassFactory*)*ppv);
144 while (NULL
!= DPNET_CFS
[i
].rclsid
) {
145 if (IsEqualGUID(rclsid
, DPNET_CFS
[i
].rclsid
)) {
146 DICF_AddRef((IClassFactory
*) &DPNET_CFS
[i
]);
147 *ppv
= &DPNET_CFS
[i
];
153 FIXME("(%p,%p,%p): no interface found.\n", debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
154 return CLASS_E_CLASSNOTAVAILABLE
;