Maik Schulz
By: a guest | Mar 29th, 2010 | Syntax:
Objective C | Size: 0.50 KB | Hits: 136 | Expires: Never
/* SVR4 typedef of uint is commonly found on UNIX machines. */
#if defined(XP_UNIX) && !defined(__QNXNTO__)
#include <sys/types.h>
#else
typedef JSUintn uint;
#endif
typedef JSUintn uintn;
#ifndef OOLITE_MAC_OS_X
typedef JSUint64 uint64;
#else
typedef unsigned long long uint64;
#endif
#if !defined(_WIN32) && !defined(XP_OS2)
typedef JSUint32 uint32;
#else
typedef unsigned long uint32;
#endif
typedef JSUint16 uint16;
typedef JSUint8 uint8;
#ifndef _XP_Core_
typedef JSIntn intn;
#endif