/* $Id: Types.h,v 1.2 1996/09/15 23:03:02 swetland Exp $
**
** Basic types.  Used by Message class
**
** Copyright 1996, Brian J. Swetland <swetland@uiuc.edu> and ACM@UIUC.
** Free for non-commercial use.  Share and Enjoy!
*/

#ifndef _TYPES_H
#define _TYPES_H

typedef unsigned char Byte;     /* unsigned, 8-bit byte */
typedef unsigned short Word;    /* unsigned, 16-bit word */
typedef char * String;          /* ASCIIZ string */

#endif /* _TYPES_H */

