config_types.h 499 B

12345678910111213141516171819202122232425
  1. #ifndef __CONFIG_TYPES_H__
  2. #define __CONFIG_TYPES_H__
  3. /* these are filled in by configure */
  4. #define INCLUDE_INTTYPES_H 1
  5. #define INCLUDE_STDINT_H 1
  6. #define INCLUDE_SYS_TYPES_H 1
  7. #if INCLUDE_INTTYPES_H
  8. # include <inttypes.h>
  9. #endif
  10. #if INCLUDE_STDINT_H
  11. # include <stdint.h>
  12. #endif
  13. #if INCLUDE_SYS_TYPES_H
  14. # include <sys/types.h>
  15. #endif
  16. typedef int16_t ogg_int16_t;
  17. typedef uint16_t ogg_uint16_t;
  18. typedef int32_t ogg_int32_t;
  19. typedef uint32_t ogg_uint32_t;
  20. typedef int64_t ogg_int64_t;
  21. #endif