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.

serd_config.h 344B

12 years ago
12 years ago
12 years ago
12345678910111213141516171819
  1. #ifndef _SERD_CONFIG_H_
  2. #define _SERD_CONFIG_H_
  3. #define SERD_INTERNAL
  4. #define SERD_VERSION "0.22.0"
  5. #define HAVE_FILENO 1
  6. #if defined(__APPLE__) || defined(__WIN32__)
  7. // nothing
  8. #elif defined(__HAIKU__)
  9. #define HAVE_POSIX_MEMALIGN 1
  10. #else
  11. #define HAVE_POSIX_MEMALIGN 1
  12. #define HAVE_POSIX_FADVISE 1
  13. #endif
  14. #endif /* _SERD_CONFIG_H_ */