Added one typedef needed for the alpha port.

This commit is contained in:
billwhite
2000-09-11 18:51:51 +00:00
parent 7792b3ea4d
commit f3e0e811fc

View File

@@ -30,8 +30,14 @@ typedef unsigned char FxU8;
typedef signed char FxI8;
typedef unsigned short FxU16;
typedef signed short FxI16;
#if defined(__alpha__) || defined (__LP64__)
typedef signed int FxI32;
typedef unsigned int FxU32;
#else
typedef signed long FxI32;
typedef unsigned long FxU32;
#endif
typedef unsigned long AnyPtr;
typedef int FxBool;
typedef float FxFloat;
typedef double FxDouble;