mirror of
https://github.com/reactos/reactos.git
synced 2025-05-28 21:48:19 +00:00
[LIBTIFF] Restore ROS-diff that I thought was no longer needed because of PCH. CORE-14291
This commit is contained in:
parent
058c2658a4
commit
ffd3b0c8db
2 changed files with 16 additions and 0 deletions
|
@ -42,13 +42,21 @@
|
||||||
#define TIFF_INT64_FORMAT "%I64d"
|
#define TIFF_INT64_FORMAT "%I64d"
|
||||||
|
|
||||||
/* Signed 64-bit type */
|
/* Signed 64-bit type */
|
||||||
|
#ifdef __GNUC__
|
||||||
|
#define TIFF_INT64_T signed long long
|
||||||
|
#else
|
||||||
#define TIFF_INT64_T signed __int64
|
#define TIFF_INT64_T signed __int64
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Unsigned 64-bit type formatter */
|
/* Unsigned 64-bit type formatter */
|
||||||
#define TIFF_UINT64_FORMAT "%I64u"
|
#define TIFF_UINT64_FORMAT "%I64u"
|
||||||
|
|
||||||
/* Unsigned 64-bit type */
|
/* Unsigned 64-bit type */
|
||||||
|
#ifdef __GNUC__
|
||||||
|
#define TIFF_UINT64_T unsigned long long
|
||||||
|
#else
|
||||||
#define TIFF_UINT64_T unsigned __int64
|
#define TIFF_UINT64_T unsigned __int64
|
||||||
|
#endif
|
||||||
|
|
||||||
#if _WIN64
|
#if _WIN64
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -47,13 +47,21 @@
|
||||||
#define TIFF_INT64_FORMAT "%I64d"
|
#define TIFF_INT64_FORMAT "%I64d"
|
||||||
|
|
||||||
/* Signed 64-bit type */
|
/* Signed 64-bit type */
|
||||||
|
#ifdef __GNUC__
|
||||||
|
#define TIFF_INT64_T signed long long
|
||||||
|
#else
|
||||||
#define TIFF_INT64_T signed __int64
|
#define TIFF_INT64_T signed __int64
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Unsigned 64-bit type formatter */
|
/* Unsigned 64-bit type formatter */
|
||||||
#define TIFF_UINT64_FORMAT "%I64u"
|
#define TIFF_UINT64_FORMAT "%I64u"
|
||||||
|
|
||||||
/* Unsigned 64-bit type */
|
/* Unsigned 64-bit type */
|
||||||
|
#ifdef __GNUC__
|
||||||
|
#define TIFF_UINT64_T unsigned long long
|
||||||
|
#else
|
||||||
#define TIFF_UINT64_T unsigned __int64
|
#define TIFF_UINT64_T unsigned __int64
|
||||||
|
#endif
|
||||||
|
|
||||||
#if _WIN64
|
#if _WIN64
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue