]> git.tdb.fi Git - ext/ogg.git/blob - include/ogg/config_types.h
Add MSP build files
[ext/ogg.git] / include / ogg / config_types.h
1
2 #ifndef __CONFIG_TYPES_H__
3 #define __CONFIG_TYPES_H__
4
5 /* manually configured for MSP build system */
6 #undef INCLUDE_INTTYPES_H
7 #define INCLUDE_STDINT_H 1
8 #undef INCLUDE_SYS_TYPES_H
9
10 #if INCLUDE_INTTYPES_H
11 #  include <inttypes.h>
12 #endif
13 #if INCLUDE_STDINT_H
14 #  include <stdint.h>
15 #endif
16 #if INCLUDE_SYS_TYPES_H
17 #  include <sys/types.h>
18 #endif
19
20 typedef int16_t ogg_int16_t;
21 typedef uint16_t ogg_uint16_t;
22 typedef int32_t ogg_int32_t;
23 typedef uint32_t ogg_uint32_t;
24 typedef int64_t ogg_int64_t;
25 typedef uint64_t ogg_uint64_t;
26
27 #endif