PageRenderTime 38ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/Show/avc/avc_types.h

http://github.com/mbebenita/Broadway
C Header | 14 lines | 10 code | 4 blank | 0 comment | 0 complexity | 227c6a443e2fa07146b3f70d2a41b0c1 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. #ifndef AVC_TYPES_H_
  2. #define AVC_TYPES_H_
  3. #include <stdint.h>
  4. typedef uint8_t uint8;
  5. typedef uint16_t uint16;
  6. typedef int16_t int16;
  7. typedef uint32_t uint32;
  8. typedef int32_t int32;
  9. typedef unsigned int uint;
  10. #endif // AVC_TYPES_H_