Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
636B

  1. #ifndef __gInclude__
  2. #define __gInclude__
  3. #if SGI
  4. #undef BEOS
  5. #undef MAC
  6. #undef WINDOWS
  7. //
  8. #define ASIO_BIG_ENDIAN 1
  9. #define ASIO_CPU_MIPS 1
  10. #elif defined WIN32
  11. #undef BEOS
  12. #undef MAC
  13. #undef SGI
  14. #define WINDOWS 1
  15. #define ASIO_LITTLE_ENDIAN 1
  16. #define ASIO_CPU_X86 1
  17. #elif BEOS
  18. #undef MAC
  19. #undef SGI
  20. #undef WINDOWS
  21. #define ASIO_LITTLE_ENDIAN 1
  22. #define ASIO_CPU_X86 1
  23. //
  24. #else
  25. #define MAC 1
  26. #undef BEOS
  27. #undef WINDOWS
  28. #undef SGI
  29. #define ASIO_BIG_ENDIAN 1
  30. #define ASIO_CPU_PPC 1
  31. #endif
  32. // always
  33. #define NATIVE_INT64 0
  34. #define IEEE754_64FLOAT 1
  35. #endif // __gInclude__