/* Copyright (c) 2005 Agorics; see MIT_License in this directory
or http://www.opensource.org/licenses/mit-license.html */

#ifndef _H_kktypes
#define _H_kktypes
/*
  Proprietary Material of Key Logic  COPYRIGHT (c) 1990 Key Logic
 
  Definitions of data types used in KeyTECH programming
*/
 
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
