mpg123.h 583 B

123456789101112131415161718192021
  1. /*
  2. mpg123.h: MPEG Audio Decoder library wrapper header for Xcode
  3. copyright 2012 by the mpg123 project - free software under the terms of the LGPL 2.1
  4. initially written by Patrick Dehne.
  5. */
  6. #ifndef MPG123_XCODE_H
  7. #define MPG123_XCODE_H
  8. #include <stdlib.h>
  9. #include <sys/types.h>
  10. #define MPG123_API_VERSION 47 /* OpenMPT */
  11. #define MPG123_NO_CONFIGURE
  12. #define MPG123_NO_LARGENAME /* OpenMPT */
  13. #include <stddef.h> /* OpenMPT */
  14. typedef ssize_t mpg123_ssize_t; /* OpenMPT */
  15. #include "../../src/libmpg123/mpg123.h.in" /* Yes, .h.in; we include the configure template! */
  16. #endif