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.

52 lines
1.3 KiB

  1. /*==========================================================================
  2. *
  3. * Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
  4. *
  5. * File: dvsetupi.cpp
  6. * Content: Implementation of class for DirectXVoice Setup utility functions
  7. *
  8. * History:
  9. * Date By Reason
  10. * ==== == ======
  11. * 09/02/99 pnewson Created it
  12. * 11/04/99 pnewson Bug #115297 - removed unused members of Setup interface
  13. * - added HWND to check audio setup
  14. * 05/03/2000 rodtoll Bug #33640 - CheckAudioSetup takes GUID * instead of const GUID *
  15. *
  16. ***************************************************************************/
  17. #include "dxvoicepch.h"
  18. // CDirectVoiceSetup
  19. //
  20. // This class represents the IDirectXVoiceSetup interface.
  21. //
  22. // The class is thread safe except for construction and
  23. // destruction.
  24. //
  25. CDirectVoiceSetup::CDirectVoiceSetup( DIRECTVOICESETUPOBJECT *lpObject )
  26. {
  27. return;
  28. }
  29. CDirectVoiceSetup::~CDirectVoiceSetup()
  30. {
  31. return;
  32. }
  33. HRESULT CDirectVoiceSetup::CheckAudioSetup(
  34. const GUID * lpguidRenderDevice,
  35. const GUID * lpguidCaptureDevice,
  36. HWND hwndParent,
  37. DWORD dwFlags)
  38. {
  39. return SupervisorCheckAudioSetup(
  40. lpguidRenderDevice,
  41. lpguidCaptureDevice,
  42. hwndParent,
  43. dwFlags);
  44. }