mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
0fd9123eac
This patch was generated by a script. Here's the source of the script for future reference: function convert() { echo "Converting $1 to $2..." find . ! -wholename "*nsprpub*" \ ! -wholename "*security/nss*" \ ! -wholename "*/.hg*" \ ! -wholename "obj-ff-dbg*" \ ! -name nsXPCOMCID.h \ ! -name prtypes.h \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert PRInt8 int8_t convert PRUint8 uint8_t convert PRInt16 int16_t convert PRUint16 uint16_t convert PRInt32 int32_t convert PRUint32 uint32_t convert PRInt64 int64_t convert PRUint64 uint64_t convert PRIntn int convert PRUintn unsigned convert PRSize size_t convert PROffset32 int32_t convert PROffset64 int64_t convert PRPtrdiff ptrdiff_t convert PRFloat64 double
87 lines
1.9 KiB
C
87 lines
1.9 KiB
C
#ifndef QCMS_TYPES_H
|
|
#define QCMS_TYPES_H
|
|
|
|
#ifdef MOZ_QCMS
|
|
|
|
#include "prtypes.h"
|
|
|
|
/* prtypes.h defines IS_LITTLE_ENDIAN and IS_BIG ENDIAN */
|
|
|
|
#if defined (__SVR4) && defined (__sun)
|
|
/* int_types.h gets included somehow, so avoid redefining the types differently */
|
|
#include <sys/int_types.h>
|
|
#elif defined (_AIX)
|
|
#include <sys/types.h>
|
|
#elif defined(__OpenBSD__)
|
|
#include <inttypes.h>
|
|
#elif !defined(ANDROID)
|
|
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;
|
|
|
|
#ifdef __OS2__
|
|
/* OS/2's stdlib typdefs uintptr_t. So we'll just include that so we don't collide */
|
|
#include <stdlib.h>
|
|
#elif !defined(__intptr_t_defined) && !defined(_UINTPTR_T_DEFINED)
|
|
typedef PRUptrdiff uintptr_t;
|
|
#endif
|
|
#endif
|
|
|
|
#else // MOZ_QCMS
|
|
|
|
#if BYTE_ORDER == LITTLE_ENDIAN
|
|
#define IS_LITTLE_ENDIAN
|
|
#elif BYTE_ORDER == BIG_ENDIAN
|
|
#define IS_BIG_ENDIAN
|
|
#endif
|
|
|
|
/* all of the platforms that we use _MSC_VER on are little endian
|
|
* so this is sufficient for now */
|
|
#ifdef _MSC_VER
|
|
#define IS_LITTLE_ENDIAN
|
|
#endif
|
|
|
|
#ifdef __OS2__
|
|
#define IS_LITTLE_ENDIAN
|
|
#endif
|
|
|
|
#if !defined(IS_LITTLE_ENDIAN) && !defined(IS_BIG_ENDIAN)
|
|
#error Unknown endianess
|
|
#endif
|
|
|
|
#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
|