/* $Id: types.h,v 1.3 2004/03/17 04:45:54 jmuelmen Exp $ */ #ifndef _TYPES_INC #define _TYPES_INC typedef unsigned char Byte; typedef int Int16; typedef unsigned int UInt16; typedef long Int32; typedef unsigned long UInt32; #define byte unsigned char typedef signed int int16; typedef unsigned int uint16; typedef long int32; typedef unsigned long uint32; #endif