2009-04-07 20:02:11 +04:00
|
|
|
#ifndef QCMS_TYPES_H
|
|
|
|
#define QCMS_TYPES_H
|
|
|
|
|
|
|
|
#ifdef MOZ_QCMS
|
|
|
|
|
|
|
|
#include "prtypes.h"
|
2012-08-09 01:08:17 +04:00
|
|
|
#include "mozilla/StandardInteger.h"
|
2009-04-07 20:02:11 +04:00
|
|
|
|
2009-04-22 06:22:29 +04:00
|
|
|
/* prtypes.h defines IS_LITTLE_ENDIAN and IS_BIG ENDIAN */
|
2009-04-14 19:25:31 +04:00
|
|
|
|
|
|
|
#if defined (__SVR4) && defined (__sun)
|
|
|
|
/* int_types.h gets included somehow, so avoid redefining the types differently */
|
|
|
|
#include <sys/int_types.h>
|
2010-01-20 13:21:19 +03:00
|
|
|
#elif defined (_AIX)
|
|
|
|
#include <sys/types.h>
|
2011-09-27 22:59:34 +04:00
|
|
|
#elif defined(__OpenBSD__)
|
|
|
|
#include <inttypes.h>
|
|
|
|
#elif !defined(ANDROID)
|
2012-08-22 19:56:38 +04:00
|
|
|
typedef int8_t int8_t;
|
|
|
|
typedef uint8_t uint8_t;
|
|
|
|
typedef int16_t int16_t;
|
|
|
|
typedef uint16_t uint16_t;
|
|
|
|
typedef int32_t int32_t;
|
|
|
|
typedef uint32_t uint32_t;
|
|
|
|
typedef int64_t int64_t;
|
|
|
|
typedef uint64_t uint64_t;
|
2009-04-11 11:53:40 +04:00
|
|
|
|
|
|
|
#ifdef __OS2__
|
|
|
|
/* OS/2's stdlib typdefs uintptr_t. So we'll just include that so we don't collide */
|
|
|
|
#include <stdlib.h>
|
2010-10-15 01:00:22 +04:00
|
|
|
#elif !defined(__intptr_t_defined) && !defined(_UINTPTR_T_DEFINED)
|
2012-09-15 00:09:52 +04:00
|
|
|
typedef unsigned long uintptr_t;
|
2009-04-11 11:53:40 +04:00
|
|
|
#endif
|
2009-04-14 19:25:31 +04:00
|
|
|
#endif
|
2009-04-07 20:02:11 +04:00
|
|
|
|
2011-05-10 19:55:39 +04:00
|
|
|
#else // MOZ_QCMS
|
2009-04-14 19:25:31 +04:00
|
|
|
|
2009-04-22 06:22:29 +04:00
|
|
|
#if BYTE_ORDER == LITTLE_ENDIAN
|
|
|
|
#define IS_LITTLE_ENDIAN
|
|
|
|
#elif BYTE_ORDER == BIG_ENDIAN
|
|
|
|
#define IS_BIG_ENDIAN
|
|
|
|
#endif
|
|
|
|
|
2009-04-14 19:25:31 +04:00
|
|
|
/* all of the platforms that we use _MSC_VER on are little endian
|
|
|
|
* so this is sufficient for now */
|
|
|
|
#ifdef _MSC_VER
|
2009-04-22 06:22:29 +04:00
|
|
|
#define IS_LITTLE_ENDIAN
|
2009-04-14 19:25:31 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __OS2__
|
2009-04-22 06:22:29 +04:00
|
|
|
#define IS_LITTLE_ENDIAN
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(IS_LITTLE_ENDIAN) && !defined(IS_BIG_ENDIAN)
|
|
|
|
#error Unknown endianess
|
2009-04-14 19:25:31 +04:00
|
|
|
#endif
|
2009-04-07 20:02:11 +04:00
|
|
|
|
|
|
|
#if defined (_SVR4) || defined (SVR4) || defined (__OpenBSD__) || defined (_sgi) || defined (__sun) || defined (sun) || defined (__digital__)
|
|
|
|
# include <inttypes.h>
|
|
|
|
#elif defined (_MSC_VER)
|
|
|
|
typedef __int8 int8_t;
|
|
|
|
typedef unsigned __int8 uint8_t;
|
|
|
|
typedef __int16 int16_t;
|
|
|
|
typedef unsigned __int16 uint16_t;
|
|
|
|
typedef __int32 int32_t;
|
|
|
|
typedef unsigned __int32 uint32_t;
|
|
|
|
typedef __int64 int64_t;
|
|
|
|
typedef unsigned __int64 uint64_t;
|
|
|
|
#ifdef _WIN64
|
|
|
|
typedef unsigned __int64 uintptr_t;
|
|
|
|
#else
|
|
|
|
typedef unsigned long uintptr_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#elif defined (_AIX)
|
|
|
|
# include <sys/inttypes.h>
|
|
|
|
#else
|
|
|
|
# include <stdint.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef qcms_bool bool;
|
|
|
|
#define true 1
|
|
|
|
#define false 0
|
|
|
|
|
|
|
|
#endif
|