Leaked source code of windows server 2003
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.

59 lines
2.4 KiB

  1. /***************************************************************************
  2. *
  3. * Copyright (C) 2000-2002 Microsoft Corporation. All Rights Reserved.
  4. *
  5. * File: aecdbgprop.h
  6. * Content: AEC Debug stuff
  7. * History:
  8. * Date By Reason
  9. * ==== == ======
  10. * 05/16/2000 dandinu Created.
  11. *
  12. ***************************************************************************/
  13. #ifdef AEC_DEBUG_SUPPORT
  14. #ifndef _AECDMODBGPROP_
  15. #define _AECDMODBGPROP_
  16. #include <objbase.h>
  17. //
  18. // IDirectSoundCaptureFXMsAecPrivate
  19. //
  20. DEFINE_GUID(IID_IDirectSoundCaptureFXMsAecPrivate, 0x2cf79924, 0x9ceb, 0x4482, 0x9b, 0x45, 0x1c, 0xdc, 0x23, 0x88, 0xb1, 0xf3);
  21. #undef INTERFACE
  22. #define INTERFACE IDirectSoundCaptureFXMsAecPrivate
  23. DECLARE_INTERFACE_(IDirectSoundCaptureFXMsAecPrivate, IUnknown)
  24. {
  25. // IUnknown methods
  26. STDMETHOD(QueryInterface) (THIS_ REFIID, LPVOID *) PURE;
  27. STDMETHOD_(ULONG,AddRef) (THIS) PURE;
  28. STDMETHOD_(ULONG,Release) (THIS) PURE;
  29. // IDirectSoundCaptureFXMsAecPrivate methods
  30. //STDMETHOD(SetAllParameters) (THIS_ LPCDSCFXMsAecPrivate pDscFxMsAecPrivate) PURE;
  31. STDMETHOD(GetSynchStreamFlag) (THIS_ PBOOL) PURE;
  32. STDMETHOD(GetNoiseMagnitude) (THIS_ PVOID, ULONG, PULONG) PURE;
  33. };
  34. #define IDirectSoundCaptureFXMsAecPrivate_QueryInterface(p,a,b) IUnknown_QueryInterface(p,a,b)
  35. #define IDirectSoundCaptureFXMsAecPrivate_AddRef(p) IUnknown_AddRef(p)
  36. #define IDirectSoundCaptureFXMsAecPrivate_Release(p) IUnknown_Release(p)
  37. #if !defined(__cplusplus) || defined(CINTERFACE)
  38. //#define IDirectSoundCaptureFXMsAecPrivate_SetAllParameters(p,a) (p)->lpVtbl->SetAllParameters(p,a)
  39. #define IDirectSoundCaptureFXMsAecPrivate_GetSynchStreamFlag(p,a,) (p)->lpVtbl->GetSynchStreamFlag(p,a)
  40. #define IDirectSoundCaptureFXMsAecPrivate_GetNoiseMagnitude(p,a,b,c) (p)->lpVtbl->GetNoiseMagnitude(p,a,b,c)
  41. #else // !defined(__cplusplus) || defined(CINTERFACE)
  42. //#define IDirectSoundCaptureFXMsAecPrivate_SetAllParameters(p,a) (p)->SetAllParameters(a)
  43. #define IDirectSoundCaptureFXMsAecPrivate_GetSynchStreamFlag(p,a) (p)->GetSynchStreamFlag(a)
  44. #define IDirectSoundCaptureFXMsAecPrivate_GetNoiseMagnituge(p,a,b,c) (p)->GetNoiseMagnitude(a,b,c)
  45. #endif // !defined(__cplusplus) || defined(CINTERFACE)
  46. #endif // !defined(_AECDMODBGPROP_)
  47. #endif // AEC_DEBUG_SUPPORT