home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 Secrets / Secrets2.iso / Audio / WAV / MaplayP / _SETUP.1 / obuffer.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-06-17  |  703 b   |  46 lines

  1. /* Obuffer.cpp
  2.  
  3.    Includes the correct implementation of Obuffer for the
  4.    operating system you are compiling for.
  5.  
  6.    Last edit : 05/02/97 */
  7.  
  8. #include "fileobuf.cc"
  9.  
  10. #ifdef IRIX
  11. #include "indigo_obuffer.cc"
  12. #endif
  13.  
  14. #ifdef SPARC
  15. #include "sparc_obuffer.cc"
  16. #endif
  17.  
  18. #ifdef HPUX
  19. #include "hpux_obuffer.cc"
  20. #endif
  21.  
  22. #if defined(LINUX) || defined(__FreeBSD__)
  23. #include "linux_obuffer.cc"
  24. #endif
  25.  
  26. #ifdef NeXT
  27. #include "NeXT_obuffer.cc"
  28. #endif
  29.  
  30. #ifdef AIX
  31. #include "aix_obuffer.cc"
  32. #endif
  33.  
  34. #ifdef __WIN32__
  35. #include "mci_obuf.cpp"
  36. #include "wavefile_obuffer.cpp"
  37. #endif
  38.  
  39. #ifdef BEOS
  40. #include "beos_obuffer.cc"
  41. #endif
  42.  
  43. #ifdef OS2
  44. #include "os2_obuffer.cc"
  45. #endif
  46.