typedef.h 264 B

1234567891011121314151617
  1. /**
  2. * \file
  3. * Standard Types definition
  4. */
  5. #ifndef _TYPE_DEF_H_
  6. #define _TYPE_DEF_H_
  7. typedef char I8;
  8. typedef unsigned char U8;
  9. typedef short I16;
  10. typedef unsigned short U16;
  11. typedef long I32;
  12. typedef unsigned long U32;
  13. typedef unsigned long long U64;
  14. #endif