home *** CD-ROM | disk | FTP | other *** search
/ CD-X 1 / cdx_01.iso / demodisc / basq / dualmodp / detsb.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-02  |  697 b   |  36 lines

  1. // ************************************************************************
  2. // *
  3. // *    File        : DETSB.H
  4. // *
  5. // *    Description : Detection routines for SB & SB Pro
  6. // *
  7. // *    Copyright (C) 1993 Otto Chrons
  8. // *
  9. // ************************************************************************
  10.  
  11. #ifndef __DEF_DETECTSB
  12. #define __DEF_DETECTSB
  13.  
  14. #ifndef __DEF_MCP
  15. #include "mcp.h"
  16. #endif
  17.  
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21.  
  22. int cdecl detectSB( SOUNDCARD *sCard );
  23.  
  24. #ifndef __C32__
  25. int cdecl detectSBHW( SOUNDCARD *sCard );
  26. int cdecl detectSBProHW( SOUNDCARD *sCard );
  27. #endif
  28.  
  29. int cdecl detectSB16HW( SOUNDCARD *sCard );
  30.  
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34.  
  35. #endif
  36.