00001 // basictypes.h 00002 // 00003 // Copyright (C) 2001, Chris Laurel <claurel@shatters.net> 00004 // 00005 // This program is free software; you can redistribute it and/or 00006 // modify it under the terms of the GNU General Public License 00007 // as published by the Free Software Foundation; either version 2 00008 // of the License, or (at your option) any later version. 00009 00010 #ifndef _BASICTYPES_H_ 00011 #define _BASICTYPES_H_ 00012 00013 typedef unsigned int uint; 00014 00015 // Fixed size types 00016 typedef int int32; 00017 typedef unsigned int uint32; 00018 typedef short int16; 00019 typedef unsigned short uint16; 00020 typedef char int8; 00021 typedef unsigned char uint8; 00022 00023 #endif // _BASICTYPES_H_ 00024
1.4.1