RtAudioOS.cpp 340 B

12345678910111213141516171819
  1. #ifdef _WIN32
  2. #define __WINDOWS_DS__
  3. //#define __WINDOWS_ASIO__
  4. #endif
  5. #ifdef __linux__
  6. #define __LINUX_ALSA__
  7. //add by ron : add pulse support
  8. //#define __LINUX_PULSE__
  9. //#define __UNIX_JACK__
  10. #define __LINUX_OSS__
  11. #endif
  12. #ifdef __APPLE__
  13. #define __MACOSX_CORE__
  14. #endif
  15. #include "../rtaudio.mod/rtaudio/RtAudio.cpp"