2009-04-07 20:02:11 +04:00
|
|
|
#ifndef QCMS_TYPES_H
|
|
|
|
#define QCMS_TYPES_H
|
|
|
|
|
2019-05-09 21:29:07 +03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(IS_LITTLE_ENDIAN) && !defined(IS_BIG_ENDIAN)
|
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
|
2019-05-09 21:29:07 +03:00
|
|
|
#endif
|
2009-04-22 06:22:29 +04:00
|
|
|
|
|
|
|
#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>
|
2014-02-11 03:45:43 +04:00
|
|
|
#elif defined (_MSC_VER) && _MSC_VER < 1600
|
2009-04-07 20:02:11 +04:00
|
|
|
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
|
|
|
|
|
2019-05-09 21:29:07 +03:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2009-04-07 20:02:11 +04:00
|
|
|
|
|
|
|
#endif
|