/* * ===================================================================================== * * Filename: jTypes.h * * Description: Base types * * Version: 1.0 * Created: 31/05/2011 22:03:41 * Revision: none * Compiler: gcc * * Author: John Ryland (jryland), jryland@xiaofrog.com * Company: InvertedLogic * * ===================================================================================== */ #ifndef __J_TYPES_H__ #define __J_TYPES_H__ typedef signed char jInt8; typedef signed short jInt16; typedef signed int jInt32; typedef signed long long jInt64; typedef unsigned char jUInt8; typedef unsigned short jUInt16; typedef unsigned int jUInt32; typedef unsigned long long jUInt64; typedef float jFloat32; typedef double jFloat64; #endif // __J_TYPES_H__