87 lines
2.6 KiB
C++
87 lines
2.6 KiB
C++
#include "resource.h" // main symbols
|
|
#include "dpaddr.h"
|
|
|
|
#define typedef__dxj_DirectPlayAddress IDirectPlay8Address*
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Direct Net Peer
|
|
|
|
//REVIEW -- using pointers to ID's is necessary because some compilers don't like
|
|
//references as template arguments.
|
|
|
|
class C_dxj_DirectPlayAddressObject :
|
|
|
|
#ifdef USING_IDISPATCH
|
|
public CComDualImpl<I_dxj_DirectPlayAddress, &IID_I_dxj_DirectPlayAddress, &LIBID_DIRECTLib>,
|
|
public ISupportErrorInfo,
|
|
#else
|
|
public I_dxj_DirectPlayAddress,
|
|
#endif
|
|
|
|
public CComObjectRoot
|
|
{
|
|
public:
|
|
C_dxj_DirectPlayAddressObject() ;
|
|
virtual ~C_dxj_DirectPlayAddressObject() ;
|
|
|
|
BEGIN_COM_MAP(C_dxj_DirectPlayAddressObject)
|
|
COM_INTERFACE_ENTRY(I_dxj_DirectPlayAddress)
|
|
#ifdef USING_IDISPATCH
|
|
COM_INTERFACE_ENTRY(IDispatch)
|
|
COM_INTERFACE_ENTRY(ISupportErrorInfo)
|
|
#endif
|
|
END_COM_MAP()
|
|
|
|
DECLARE_AGGREGATABLE(C_dxj_DirectPlayAddressObject)
|
|
|
|
#ifdef USING_IDISPATCH
|
|
// ISupportsErrorInfo
|
|
STDMETHOD(InterfaceSupportsErrorInfo)(REFIID riid);
|
|
#endif
|
|
|
|
// I_dxj_DirectPlayAddress
|
|
public:
|
|
/* [hidden] */ HRESULT STDMETHODCALLTYPE InternalSetObject(
|
|
/* [in] */ IUnknown __RPC_FAR *lpdd);
|
|
|
|
/* [hidden] */ HRESULT STDMETHODCALLTYPE InternalGetObject(
|
|
/* [retval][out] */ IUnknown __RPC_FAR *__RPC_FAR *lpdd);
|
|
|
|
HRESULT STDMETHODCALLTYPE BuildFromURL(BSTR SourceURL);
|
|
HRESULT STDMETHODCALLTYPE Duplicate(I_dxj_DirectPlayAddress **NewAddress);
|
|
HRESULT STDMETHODCALLTYPE Clear();
|
|
HRESULT STDMETHODCALLTYPE GetURL(BSTR *URL);
|
|
HRESULT STDMETHODCALLTYPE GetSP(BSTR *guidSP);
|
|
HRESULT STDMETHODCALLTYPE GetUserData(void *UserData, long *lBufferSize);
|
|
HRESULT STDMETHODCALLTYPE SetSP(BSTR guidSP);
|
|
HRESULT STDMETHODCALLTYPE SetUserData(void *UserData, long lDataSize);
|
|
HRESULT STDMETHODCALLTYPE GetNumComponents(long *lNumComponents);
|
|
HRESULT STDMETHODCALLTYPE GetDevice(BSTR *guidDevice);
|
|
HRESULT STDMETHODCALLTYPE SetDevice(BSTR guidDevice);
|
|
HRESULT STDMETHODCALLTYPE SetEqual(I_dxj_DirectPlayAddress *Address);
|
|
HRESULT STDMETHODCALLTYPE AddComponentLong(BSTR sComponent, long lValue);
|
|
HRESULT STDMETHODCALLTYPE AddComponentString(BSTR sComponent, BSTR sValue);
|
|
HRESULT STDMETHODCALLTYPE GetComponentLong(BSTR sComponent, long *lValue);
|
|
HRESULT STDMETHODCALLTYPE GetComponentString(BSTR sComponent, BSTR *sValue);
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// note: this is public for the callbacks
|
|
DECL_VARIABLE(_dxj_DirectPlayAddress);
|
|
|
|
private:
|
|
|
|
public:
|
|
|
|
DX3J_GLOBAL_LINKS(_dxj_DirectPlayAddress);
|
|
|
|
DWORD InternalAddRef();
|
|
DWORD InternalRelease();
|
|
void *m_pUserData;
|
|
DWORD m_dwUserDataSize;
|
|
};
|
|
|
|
|
|
|
|
|