2004-04-07 22:39:00 +02:00
|
|
|
/*
|
|
|
|
* DirectPlay8 Address
|
|
|
|
*
|
|
|
|
* Copyright 2004 Raphael Junqueira
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2004-04-07 22:39:00 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
#define COBJMACROS
|
2004-04-07 22:39:00 +02:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "wingdi.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "objbase.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
#include "dplay8.h"
|
|
|
|
#include "dpnet_private.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(dpnet);
|
|
|
|
|
|
|
|
/* IDirectPlay8Address IUnknown parts follow: */
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_QueryInterface(PDIRECTPLAY8ADDRESS iface, REFIID riid, LPVOID *ppobj)
|
2004-04-07 22:39:00 +02:00
|
|
|
{
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-07 22:39:00 +02:00
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_IUnknown)
|
|
|
|
|| IsEqualGUID(riid, &IID_IDirectPlay8Address)) {
|
2006-06-10 11:57:38 +02:00
|
|
|
IUnknown_AddRef(iface);
|
2004-04-07 22:39:00 +02:00
|
|
|
*ppobj = This;
|
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("(%p)->(%s,%p),not found\n",This,debugstr_guid(riid),ppobj);
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static ULONG WINAPI IDirectPlay8AddressImpl_AddRef(PDIRECTPLAY8ADDRESS iface) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2005-01-14 17:02:20 +01:00
|
|
|
ULONG refCount = InterlockedIncrement(&This->ref);
|
|
|
|
|
2006-10-08 23:50:09 +02:00
|
|
|
TRACE("(%p)->(ref before=%u)\n", This, refCount - 1);
|
2005-01-14 17:02:20 +01:00
|
|
|
|
|
|
|
return refCount;
|
2004-04-07 22:39:00 +02:00
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static ULONG WINAPI IDirectPlay8AddressImpl_Release(PDIRECTPLAY8ADDRESS iface) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2005-01-14 17:02:20 +01:00
|
|
|
ULONG refCount = InterlockedDecrement(&This->ref);
|
|
|
|
|
2006-10-08 23:50:09 +02:00
|
|
|
TRACE("(%p)->(ref before=%u)\n", This, refCount + 1);
|
2005-01-14 17:02:20 +01:00
|
|
|
|
|
|
|
if (!refCount) {
|
2004-04-07 22:39:00 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
2005-01-14 17:02:20 +01:00
|
|
|
return refCount;
|
2004-04-07 22:39:00 +02:00
|
|
|
}
|
|
|
|
|
2009-01-03 13:53:38 +01:00
|
|
|
/* returns name of given GUID */
|
|
|
|
static const char *debugstr_SP(const GUID *id) {
|
|
|
|
static const guid_info guids[] = {
|
|
|
|
/* CLSIDs */
|
|
|
|
GE(CLSID_DP8SP_IPX),
|
|
|
|
GE(CLSID_DP8SP_TCPIP),
|
|
|
|
GE(CLSID_DP8SP_SERIAL),
|
|
|
|
GE(CLSID_DP8SP_MODEM)
|
|
|
|
};
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
if (!id) return "(null)";
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(guids)/sizeof(guids[0]); i++) {
|
|
|
|
if (IsEqualGUID(id, guids[i].guid))
|
|
|
|
return guids[i].name;
|
|
|
|
}
|
|
|
|
/* if we didn't find it, act like standard debugstr_guid */
|
|
|
|
return debugstr_guid(id);
|
|
|
|
}
|
|
|
|
|
2004-04-07 22:39:00 +02:00
|
|
|
/* IDirectPlay8Address Interface follow: */
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_BuildFromURLW(PDIRECTPLAY8ADDRESS iface, WCHAR* pwszSourceURL) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-08 06:38:26 +02:00
|
|
|
TRACE("(%p, %s): stub\n", This, debugstr_w(pwszSourceURL));
|
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_BuildFromURLA(PDIRECTPLAY8ADDRESS iface, CHAR* pszSourceURL) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-08 06:38:26 +02:00
|
|
|
TRACE("(%p, %s): stub\n", This, pszSourceURL);
|
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_Duplicate(PDIRECTPLAY8ADDRESS iface, PDIRECTPLAY8ADDRESS* ppdpaNewAddress) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-08 06:38:26 +02:00
|
|
|
TRACE("(%p, %p): stub\n", This, ppdpaNewAddress);
|
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_SetEqual(PDIRECTPLAY8ADDRESS iface, PDIRECTPLAY8ADDRESS pdpaAddress) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-08 06:38:26 +02:00
|
|
|
TRACE("(%p, %p): stub\n", This, pdpaAddress);
|
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_IsEqual(PDIRECTPLAY8ADDRESS iface, PDIRECTPLAY8ADDRESS pdpaAddress) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-08 06:38:26 +02:00
|
|
|
TRACE("(%p, %p): stub\n", This, pdpaAddress);
|
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_Clear(PDIRECTPLAY8ADDRESS iface) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-08 06:38:26 +02:00
|
|
|
TRACE("(%p): stub\n", This);
|
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_GetURLW(PDIRECTPLAY8ADDRESS iface, WCHAR* pwszURL, PDWORD pdwNumChars) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-08 06:38:26 +02:00
|
|
|
TRACE("(%p): stub\n", This);
|
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_GetURLA(PDIRECTPLAY8ADDRESS iface, CHAR* pszURL, PDWORD pdwNumChars) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-08 06:38:26 +02:00
|
|
|
TRACE("(%p): stub\n", This);
|
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_GetSP(PDIRECTPLAY8ADDRESS iface, GUID* pguidSP) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-08 06:38:26 +02:00
|
|
|
TRACE("(%p, %p)\n", iface, pguidSP);
|
2008-02-26 21:20:11 +01:00
|
|
|
*pguidSP = This->SP_guid;
|
2004-04-08 06:38:26 +02:00
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_GetUserData(PDIRECTPLAY8ADDRESS iface, LPVOID pvUserData, PDWORD pdwBufferSize) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-08 06:38:26 +02:00
|
|
|
TRACE("(%p): stub\n", This);
|
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_SetSP(PDIRECTPLAY8ADDRESS iface, CONST GUID* CONST pguidSP) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-08 06:38:26 +02:00
|
|
|
TRACE("(%p, %s)\n", iface, debugstr_SP(pguidSP));
|
2008-02-26 21:20:11 +01:00
|
|
|
This->SP_guid = *pguidSP;
|
2004-04-08 06:38:26 +02:00
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_SetUserData(PDIRECTPLAY8ADDRESS iface, CONST void* CONST pvUserData, CONST DWORD dwDataSize) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-08 06:38:26 +02:00
|
|
|
TRACE("(%p): stub\n", This);
|
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_GetNumComponents(PDIRECTPLAY8ADDRESS iface, PDWORD pdwNumComponents) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-08 06:38:26 +02:00
|
|
|
TRACE("(%p): stub\n", This);
|
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_GetComponentByName(PDIRECTPLAY8ADDRESS iface, CONST WCHAR* CONST pwszName, LPVOID pvBuffer, PDWORD pdwBufferSize, PDWORD pdwDataType) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-08 06:38:26 +02:00
|
|
|
TRACE("(%p): stub\n", This);
|
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_GetComponentByIndex(PDIRECTPLAY8ADDRESS iface, CONST DWORD dwComponentID, WCHAR* pwszName,
|
2004-04-08 06:38:26 +02:00
|
|
|
PDWORD pdwNameLen, void* pvBuffer, PDWORD pdwBufferSize, PDWORD pdwDataType) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-08 06:38:26 +02:00
|
|
|
TRACE("(%p): stub\n", This);
|
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_AddComponent(PDIRECTPLAY8ADDRESS iface, CONST WCHAR* CONST pwszName,
|
2004-04-08 06:38:26 +02:00
|
|
|
CONST void* CONST lpvData, CONST DWORD dwDataSize, CONST DWORD dwDataType) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2006-10-08 23:50:09 +02:00
|
|
|
TRACE("(%p, %s, %p, %u, %x): stub\n", This, debugstr_w(pwszName), lpvData, dwDataSize, dwDataType);
|
2004-04-08 06:38:26 +02:00
|
|
|
|
|
|
|
if (NULL == lpvData) return DPNERR_INVALIDPOINTER;
|
|
|
|
switch (dwDataType) {
|
|
|
|
case DPNA_DATATYPE_DWORD:
|
|
|
|
if (sizeof(DWORD) != dwDataSize) return DPNERR_INVALIDPARAM;
|
2006-10-08 23:50:09 +02:00
|
|
|
TRACE("(%p, %u): DWORD Type -> %u\n", lpvData, dwDataSize, *(const DWORD*) lpvData);
|
2004-04-08 06:38:26 +02:00
|
|
|
break;
|
|
|
|
case DPNA_DATATYPE_GUID:
|
|
|
|
if (sizeof(GUID) != dwDataSize) return DPNERR_INVALIDPARAM;
|
2009-01-04 01:45:42 +01:00
|
|
|
TRACE("(%p, %u): GUID Type -> %s\n", lpvData, dwDataSize, debugstr_guid(lpvData));
|
2004-04-08 06:38:26 +02:00
|
|
|
break;
|
|
|
|
case DPNA_DATATYPE_STRING:
|
2006-10-08 23:50:09 +02:00
|
|
|
TRACE("(%p, %u): STRING Type -> %s\n", lpvData, dwDataSize, (const CHAR*) lpvData);
|
2004-04-08 06:38:26 +02:00
|
|
|
break;
|
|
|
|
case DPNA_DATATYPE_BINARY:
|
2006-10-08 23:50:09 +02:00
|
|
|
TRACE("(%p, %u): BINARY Type\n", lpvData, dwDataSize);
|
2004-04-08 06:38:26 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_GetDevice(PDIRECTPLAY8ADDRESS iface, GUID* pDevGuid) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-08 06:38:26 +02:00
|
|
|
TRACE("(%p): stub\n", This);
|
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_SetDevice(PDIRECTPLAY8ADDRESS iface, CONST GUID* CONST devGuid) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-08 06:38:26 +02:00
|
|
|
TRACE("(%p, %s): stub\n", This, debugstr_guid(devGuid));
|
|
|
|
return DPN_OK;
|
|
|
|
}
|
|
|
|
|
2006-06-10 11:57:38 +02:00
|
|
|
static HRESULT WINAPI IDirectPlay8AddressImpl_BuildFromDirectPlay4Address(PDIRECTPLAY8ADDRESS iface, LPVOID pvAddress, DWORD dwDataSize) {
|
2004-09-06 22:34:29 +02:00
|
|
|
IDirectPlay8AddressImpl *This = (IDirectPlay8AddressImpl *)iface;
|
2004-04-08 06:38:26 +02:00
|
|
|
TRACE("(%p): stub\n", This);
|
|
|
|
return DPN_OK;
|
|
|
|
}
|
2004-04-07 22:39:00 +02:00
|
|
|
|
2005-06-01 21:57:42 +02:00
|
|
|
static const IDirectPlay8AddressVtbl DirectPlay8Address_Vtbl =
|
2004-04-07 22:39:00 +02:00
|
|
|
{
|
|
|
|
IDirectPlay8AddressImpl_QueryInterface,
|
|
|
|
IDirectPlay8AddressImpl_AddRef,
|
|
|
|
IDirectPlay8AddressImpl_Release,
|
|
|
|
IDirectPlay8AddressImpl_BuildFromURLW,
|
|
|
|
IDirectPlay8AddressImpl_BuildFromURLA,
|
|
|
|
IDirectPlay8AddressImpl_Duplicate,
|
|
|
|
IDirectPlay8AddressImpl_SetEqual,
|
|
|
|
IDirectPlay8AddressImpl_IsEqual,
|
|
|
|
IDirectPlay8AddressImpl_Clear,
|
|
|
|
IDirectPlay8AddressImpl_GetURLW,
|
|
|
|
IDirectPlay8AddressImpl_GetURLA,
|
|
|
|
IDirectPlay8AddressImpl_GetSP,
|
|
|
|
IDirectPlay8AddressImpl_GetUserData,
|
|
|
|
IDirectPlay8AddressImpl_SetSP,
|
|
|
|
IDirectPlay8AddressImpl_SetUserData,
|
|
|
|
IDirectPlay8AddressImpl_GetNumComponents,
|
|
|
|
IDirectPlay8AddressImpl_GetComponentByName,
|
|
|
|
IDirectPlay8AddressImpl_GetComponentByIndex,
|
|
|
|
IDirectPlay8AddressImpl_AddComponent,
|
|
|
|
IDirectPlay8AddressImpl_GetDevice,
|
|
|
|
IDirectPlay8AddressImpl_SetDevice,
|
|
|
|
IDirectPlay8AddressImpl_BuildFromDirectPlay4Address
|
|
|
|
};
|
|
|
|
|
|
|
|
HRESULT DPNET_CreateDirectPlay8Address(LPCLASSFACTORY iface, LPUNKNOWN punkOuter, REFIID riid, LPVOID *ppobj) {
|
|
|
|
IDirectPlay8AddressImpl* client;
|
|
|
|
|
|
|
|
TRACE("(%p, %s, %p)\n", punkOuter, debugstr_guid(riid), ppobj);
|
|
|
|
|
|
|
|
client = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IDirectPlay8AddressImpl));
|
|
|
|
if (NULL == client) {
|
|
|
|
*ppobj = NULL;
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
client->lpVtbl = &DirectPlay8Address_Vtbl;
|
|
|
|
client->ref = 0; /* will be inited with QueryInterface */
|
|
|
|
return IDirectPlay8AddressImpl_QueryInterface ((PDIRECTPLAY8ADDRESS)client, riid, ppobj);
|
|
|
|
}
|