From 51cb168f79d19eed6083cb5ced3e9f3d97c16746 Mon Sep 17 00:00:00 2001 From: jacqueline Date: Fri, 18 Aug 2023 16:05:06 +1000 Subject: sorry daniel --- lib/ogg/include/ogg/config_types.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 lib/ogg/include/ogg/config_types.h (limited to 'lib/ogg/include') diff --git a/lib/ogg/include/ogg/config_types.h b/lib/ogg/include/ogg/config_types.h new file mode 100644 index 00000000..1a87df64 --- /dev/null +++ b/lib/ogg/include/ogg/config_types.h @@ -0,0 +1,26 @@ +#ifndef __CONFIG_TYPES_H__ +#define __CONFIG_TYPES_H__ + +/* these are filled in by configure or cmake*/ +#define INCLUDE_INTTYPES_H 1 +#define INCLUDE_STDINT_H 1 +#define INCLUDE_SYS_TYPES_H 1 + +#if INCLUDE_INTTYPES_H +# include +#endif +#if INCLUDE_STDINT_H +# include +#endif +#if INCLUDE_SYS_TYPES_H +# include +#endif + +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; +typedef uint64_t ogg_uint64_t; + +#endif -- cgit v1.2.3