mirror of
https://github.com/reactos/reactos.git
synced 2026-05-22 23:30:07 +08:00
[LIBTIFF] fix x64 regression (#8830)
Fix x64 regression seen at https://reactos.org/testman/compare.php?ids=106703,106708,106714 due to #8808 by reverting some changes CORE-18674
This commit is contained in:
@@ -28,6 +28,13 @@
|
||||
|
||||
/* Signed 64-bit type */
|
||||
/* #undef TIFF_INT64_T */
|
||||
#ifdef __REACTOS__
|
||||
#ifdef __GNUC__
|
||||
#define TIFF_INT64_T signed long long
|
||||
#else
|
||||
#define TIFF_INT64_T signed __int64
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* Signed 8-bit type */
|
||||
/* #undef TIFF_INT8_T */
|
||||
@@ -45,7 +52,11 @@
|
||||
/* #undef TIFF_UINT8_T */
|
||||
|
||||
/* Signed size type */
|
||||
#if defined(__REACTOS__) && defined(_WIN64)
|
||||
#define TIFF_SSIZE_T TIFF_INT64_T
|
||||
#else
|
||||
#define TIFF_SSIZE_T signed int
|
||||
#endif
|
||||
|
||||
/* Compatibility stuff. */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user