home *** CD-ROM | disk | FTP | other *** search
- /*
- * gtypes.h
- * General types.
- *
- * Copyright (c) 1996 Systems Architecture Research Centre,
- * City University, London, UK.
- *
- * See the file "license.terms" for information on usage and redistribution
- * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
- */
-
- #ifndef __gtype_h
- #define __gtype_h
-
- typedef unsigned char uint8;
- typedef unsigned short uint16;
- typedef unsigned int uint32;
- typedef unsigned long long uint64;
-
- typedef char int8;
- typedef short int16;
- typedef int int32;
- typedef long long int64;
-
- typedef enum _bool {
- false = 0,
- true = 1,
- } bool;
-
- typedef uint8 u1;
- typedef uint16 u2;
- typedef uint32 u4;
-
- typedef u1 nativecode;
-
- #endif
-