Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
1.9 KiB

  1. #include "resource.h" // main symbols
  2. #include "dmusici.h"
  3. #define typedef__dxj_DirectMusicAudioPath IDirectMusicAudioPath8*
  4. /////////////////////////////////////////////////////////////////////////////
  5. // Direct
  6. //REVIEW -- using pointers to ID's is necessary because some compilers don't like
  7. //references as template arguments.
  8. class C_dxj_DirectMusicAudioPathObject :
  9. #ifdef USING_IDISPATCH
  10. public CComDualImpl<I_dxj_DirectMusicAudioPath, &IID_I_dxj_DirectMusicAudioPath, &LIBID_DIRECTLib>,
  11. public ISupportErrorInfo,
  12. #else
  13. public I_dxj_DirectMusicAudioPath,
  14. #endif
  15. public CComObjectRoot
  16. {
  17. public:
  18. C_dxj_DirectMusicAudioPathObject() ;
  19. virtual ~C_dxj_DirectMusicAudioPathObject() ;
  20. BEGIN_COM_MAP(C_dxj_DirectMusicAudioPathObject)
  21. COM_INTERFACE_ENTRY(I_dxj_DirectMusicAudioPath)
  22. #ifdef USING_IDISPATCH
  23. COM_INTERFACE_ENTRY(IDispatch)
  24. COM_INTERFACE_ENTRY(ISupportErrorInfo)
  25. #endif
  26. END_COM_MAP()
  27. DECLARE_AGGREGATABLE(C_dxj_DirectMusicAudioPathObject)
  28. #ifdef USING_IDISPATCH
  29. // ISupportsErrorInfo
  30. STDMETHOD(InterfaceSupportsErrorInfo)(REFIID riid);
  31. #endif
  32. // I_dxj_DirectMusicAudioPath
  33. public:
  34. /* [hidden] */ HRESULT STDMETHODCALLTYPE InternalSetObject(
  35. /* [in] */ IUnknown __RPC_FAR *lpdd);
  36. /* [hidden] */ HRESULT STDMETHODCALLTYPE InternalGetObject(
  37. /* [retval][out] */ IUnknown __RPC_FAR *__RPC_FAR *lpdd);
  38. HRESULT STDMETHODCALLTYPE GetObjectInPath(long lPChannel, long lStage, long lBuffer, BSTR guidObject, long lIndex, BSTR iidInterface, IUnknown **ppObject);
  39. HRESULT STDMETHODCALLTYPE Activate(VARIANT_BOOL fActive);
  40. HRESULT STDMETHODCALLTYPE SetVolume(long lVolume, long lDuration);
  41. ////////////////////////////////////////////////////////////////////////
  42. //
  43. // note: this is public for the callbacks
  44. DECL_VARIABLE(_dxj_DirectMusicAudioPath);
  45. private:
  46. public:
  47. DX3J_GLOBAL_LINKS(_dxj_DirectMusicAudioPath);
  48. DWORD InternalAddRef();
  49. DWORD InternalRelease();
  50. };