#ifndef _H_kktypes
#define _H_kktypes
 
typedef  unsigned long long UINT64;
typedef  unsigned long long uint64; 
typedef  unsigned long  UINT32;
typedef  unsigned long  uint32;
typedef  unsigned short UINT16;
typedef  unsigned short uint16;
typedef  unsigned char  UCHAR;
typedef  unsigned char  uchar;
 
typedef  long    SINT32;
typedef  long    sint32;
typedef  short   SINT16;
typedef  short   sint16;
typedef  char    SCHAR;
typedef  char    schar;
 
#endif
