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.

46 lines
1.1 KiB

  1. /*==========================================================================;
  2. *
  3. * Copyright (C) 1995-1998 Microsoft Corporation. All Rights Reserved.
  4. *
  5. * File: nmdsprv.h
  6. * Content: utility function to map WAVE IDs to DirectSound GUID IDs
  7. * (Win98 and NT 5 only)
  8. *@@BEGIN_MSINTERNAL
  9. * History:
  10. * Date By Reason
  11. * ==== == ======
  12. * 8/19/98 dereks Created.
  13. * 8/24/98 jselbie Streamlined up for lightweight use in NetMeeting
  14. *@@END_MSINTERNAL
  15. *
  16. **************************************************************************/
  17. #ifndef __NMDSPRV_INCLUDED__
  18. #define __NMDSPRV_INCLUDED__
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif // __cplusplus
  22. // NetMeeting utility function
  23. extern HRESULT __stdcall DsprvGetWaveDeviceMapping
  24. (
  25. LPCSTR pszWaveDevice,
  26. BOOL fCapture,
  27. LPGUID pguidDeviceId
  28. );
  29. #ifdef __cplusplus
  30. }
  31. #endif // __cplusplus
  32. #endif // __DSPRV_INCLUDED__