1. #ifndef _TYPES_H
  2. #define _TYPES_H
  3.  
  4.  
  5. typedef long long int          sint64;
  6. typedef unsigned long long int uint64;
  7. typedef unsigned int           uint32;
  8. typedef signed int             sint32;
  9. typedef unsigned short         uint16;
  10. typedef signed short           sint16;
  11. typedef unsigned char          uint8;
  12. typedef signed char            sint8;
  13.  
  14.  
  15.  
  16. #endif