zenilib  0.5.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
config_types.h
Go to the documentation of this file.
1 #ifndef __CONFIG_TYPES_H__
2 #define __CONFIG_TYPES_H__
3 
4 /* these are filled in by configure */
5 #define INCLUDE_INTTYPES_H 1
6 #define INCLUDE_STDINT_H 1
7 #define INCLUDE_SYS_TYPES_H 1
8 
9 #if INCLUDE_INTTYPES_H
10 # include <inttypes.h>
11 #endif
12 #if INCLUDE_STDINT_H
13 # include <stdint.h>
14 #endif
15 #if INCLUDE_SYS_TYPES_H
16 # include <sys/types.h>
17 #endif
18 
19 typedef short ogg_int16_t;
20 typedef unsigned short ogg_uint16_t;
21 typedef int ogg_int32_t;
22 typedef unsigned int ogg_uint32_t;
23 typedef long ogg_int64_t;
24 
25 #endif
unsigned short ogg_uint16_t
Definition: config_types.h:20
short ogg_int16_t
Definition: config_types.h:19
unsigned int ogg_uint32_t
Definition: config_types.h:22
int ogg_int32_t
Definition: config_types.h:21
long ogg_int64_t
Definition: config_types.h:23