home *** CD-ROM | disk | FTP | other *** search
/ CD-X 1 / cdx_01.iso / demodisc / basq / dualmodp / dsmi.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-04  |  982 b   |  48 lines

  1. // ************************************************************************
  2. // *
  3. // *    File        : DSMI.H
  4. // *
  5. // *    Description : Main header file for DSMI
  6. // *
  7. // *    Copyright (C) 1993 Otto Chrons
  8. // *
  9. // ************************************************************************
  10.  
  11. #ifndef __DEF_DSMI
  12. #define __DEF_DSMI
  13.  
  14. #include "mcp.h"
  15. #include "gus.h"
  16. #include "gushm.h"
  17. #include "cdi.h"
  18. #include "sdi_dac.h"
  19. #include "sdi_sb.h"
  20. #include "sdi_sb16.h"
  21. #include "sdi_aria.h"
  22. #include "sdi_pas.h"
  23. #include "sdi_wss.h"
  24. #include "detpas.h"
  25. #include "detaria.h"
  26. #include "detsb.h"
  27. #include "detgus.h"
  28. #include "amp.h"
  29. #include "mixer.h"
  30. #include "timeserv.h"
  31.  
  32. #define NO_SOUNDCARD -1
  33. #define INVALID_SDI -2
  34. #define NO_MEMORY -3
  35. #define MCP_INITERROR -4
  36. #define AMP_INITERROR -5
  37.  
  38. #ifdef __cplusplus
  39. extern "C" {
  40. #endif
  41.  
  42. int cdecl initDSMI(long rate, long buffer, long options, SOUNDCARD *scard);
  43.  
  44. #ifdef __cplusplus
  45. }
  46. #endif
  47. #endif
  48.