home *** CD-ROM | disk | FTP | other *** search
/ NEXT Generation 27 / NEXT27.iso / pc / demos / emperor / dx3.exe / SDK / SAMPLES / DSSHOW3D / DSENUM.H < prev    next >
C/C++ Source or Header  |  1996-08-28  |  670b  |  33 lines

  1. /*==========================================================================
  2.  *
  3.  *  Copyright (C) 1995-1996 Microsoft Corporation. All Rights Reserved.
  4.  *
  5.  *  File:       dsenum.h        
  6.  *  Content:    Direct Sound Enumeration defines
  7.  *
  8.  *
  9.  ***************************************************************************/
  10.  
  11. #ifndef __DSENUM_INCLUDED__
  12. #define __DSENUM_INCLUDED__
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17.  
  18. // Function declarations
  19.  
  20. BOOL DoDSoundEnumerate( LPGUID );
  21.  
  22. BOOL CALLBACK DSEnumProc( LPGUID, LPSTR, LPSTR, LPVOID );
  23. BOOL CALLBACK DSEnumDlgProc( HWND, UINT, WPARAM, LPARAM );
  24.  
  25.  
  26. #ifdef __cplusplus
  27. };
  28. #endif
  29.  
  30.  
  31. #endif
  32.  
  33.