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.

112 lines
3.1 KiB

  1. #include "stdafx.h"
  2. #include "Direct.h"
  3. #include "dms.h"
  4. #include "dSoundFXChorusObj.h"
  5. extern void *g_dxj_DirectSoundFXChorus;
  6. ///////////////////////////////////////////////////////////////////
  7. // InternalAddRef
  8. ///////////////////////////////////////////////////////////////////
  9. DWORD C_dxj_DirectSoundFXChorusObject::InternalAddRef(){
  10. DWORD i;
  11. i=CComObjectRoot::InternalAddRef();
  12. DPF2(1,"DirectSoundFXChorus [%d] AddRef %d \n",creationid,i);
  13. return i;
  14. }
  15. ///////////////////////////////////////////////////////////////////
  16. // InternalRelease
  17. ///////////////////////////////////////////////////////////////////
  18. DWORD C_dxj_DirectSoundFXChorusObject::InternalRelease(){
  19. DWORD i;
  20. i=CComObjectRoot::InternalRelease();
  21. DPF2(1,"DirectSoundFXChorus [%d] Release %d \n",creationid,i);
  22. return i;
  23. }
  24. ///////////////////////////////////////////////////////////////////
  25. // C_dxj_DirectSoundFXChorusObject
  26. ///////////////////////////////////////////////////////////////////
  27. C_dxj_DirectSoundFXChorusObject::C_dxj_DirectSoundFXChorusObject(){
  28. DPF1(1,"Constructor Creation DirectSoundFXChorus Object[%d] \n ",g_creationcount);
  29. m__dxj_DirectSoundFXChorus = NULL;
  30. parent = NULL;
  31. pinterface = NULL;
  32. nextobj = g_dxj_DirectSoundFXChorus;
  33. creationid = ++g_creationcount;
  34. g_dxj_DirectSoundFXChorus = (void *)this;
  35. }
  36. ///////////////////////////////////////////////////////////////////
  37. // ~C_dxj_DirectSoundFXChorusObject
  38. ///////////////////////////////////////////////////////////////////
  39. C_dxj_DirectSoundFXChorusObject::~C_dxj_DirectSoundFXChorusObject()
  40. {
  41. DPF(1,"Entering ~C_dxj_DirectSoundFXChorusObject destructor \n");
  42. C_dxj_DirectSoundFXChorusObject *prev=NULL;
  43. for(C_dxj_DirectSoundFXChorusObject *ptr=(C_dxj_DirectSoundFXChorusObject *)g_dxj_DirectSoundFXChorus ; ptr; ptr=(C_dxj_DirectSoundFXChorusObject *)ptr->nextobj)
  44. {
  45. if(ptr == this)
  46. {
  47. if(prev)
  48. prev->nextobj = ptr->nextobj;
  49. else
  50. g_dxj_DirectSoundFXChorus = (void*)ptr->nextobj;
  51. DPF(1,"DirectSoundFXChorusObject found in g_dxj list now removed\n");
  52. break;
  53. }
  54. prev = ptr;
  55. }
  56. if(m__dxj_DirectSoundFXChorus){
  57. int count = IUNK(m__dxj_DirectSoundFXChorus)->Release();
  58. #ifdef DEBUG
  59. char buffer[256];
  60. wsprintf(buffer,"DirectX IDirectSoundFXChorus Ref count [%d] \n",count);
  61. #endif
  62. if(count==0) m__dxj_DirectSoundFXChorus = NULL;
  63. }
  64. if(parent) IUNK(parent)->Release();
  65. }
  66. HRESULT C_dxj_DirectSoundFXChorusObject::InternalGetObject(IUnknown **pUnk){
  67. *pUnk=(IUnknown*)m__dxj_DirectSoundFXChorus;
  68. return S_OK;
  69. }
  70. HRESULT C_dxj_DirectSoundFXChorusObject::InternalSetObject(IUnknown *pUnk){
  71. m__dxj_DirectSoundFXChorus=(LPDIRECTSOUNDFXCHORUS8)pUnk;
  72. return S_OK;
  73. }
  74. HRESULT C_dxj_DirectSoundFXChorusObject::SetAllParameters(DSFXCHORUS_CDESC *params)
  75. {
  76. HRESULT hr;
  77. if (FAILED( hr = m__dxj_DirectSoundFXChorus->SetAllParameters((DSFXChorus*) params) ))
  78. return hr;
  79. return S_OK;
  80. }
  81. HRESULT C_dxj_DirectSoundFXChorusObject::GetAllParameters(DSFXCHORUS_CDESC *params)
  82. {
  83. HRESULT hr;
  84. if (FAILED( hr = m__dxj_DirectSoundFXChorus->GetAllParameters((DSFXChorus*) params) ))
  85. return hr;
  86. return S_OK;
  87. }