2015-09-20 09:36:38 -04:00
|
|
|
#ifndef __CONFIG_TYPES_H__
|
|
|
|
|
#define __CONFIG_TYPES_H__
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
|
typedef int16_t ogg_int16_t;
|
|
|
|
|
typedef uint16_t ogg_uint16_t;
|
|
|
|
|
typedef int32_t ogg_int32_t;
|
|
|
|
|
typedef uint32_t ogg_uint32_t;
|
|
|
|
|
typedef int64_t ogg_int64_t;
|
2022-05-29 12:57:03 +02:00
|
|
|
typedef uint64_t ogg_uint64_t;
|
2015-09-20 09:36:38 -04:00
|
|
|
|
2022-05-29 12:57:03 +02:00
|
|
|
#endif
|