Home | History | Annotate | Download | only in ogg
      1 #ifndef __CONFIG_TYPES_H__
      2 #define __CONFIG_TYPES_H__
      3 
      4 typedef short ogg_int16_t;
      5 typedef unsigned short ogg_uint16_t;
      6 typedef int ogg_int32_t;
      7 typedef unsigned int ogg_uint32_t;
      8 typedef long long ogg_int64_t;
      9 
     10 #endif
     11