/***************************************************************************
 *
 * utypes.h
 *
 ***************************************************************************
 *
 * standard type definitions
 *
 ***************************************************************************/

#ifndef COPYRIGHT_INCLUDED
#define COPYRIGHT_INCLUDED
// static char copyrightMessage[]="(c) 1996 InterStream Inc";
#endif

#ifndef UTYPES_H_INCLUDED
#define UTYPES_H_INCLUDED

/*
 * includes
 */

/*
 * defines
 */

/*
 * typedefs
 */

#if 0
typedef unsigned long int   uint32;
typedef signed long int      int32;
typedef unsigned short int  uint16;
typedef signed short int     int16;
typedef unsigned char       uint8;
typedef signed char          int8;
typedef unsigned char        byte;
#else
#define uint32 unsigned int
#define  int32   signed int
#define uint16 unsigned short
#define  int16   signed short
#define uint8  unsigned char
#define  int8    signed char
#define  byte  unsigned char
#endif

/*
 * structures
 */


/*
 * globals
 */

/*
 * function prototypes
 */

#endif
