We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e5774e commit e5da75fCopy full SHA for e5da75f
1 file changed
sdk/include/reactos/libs/libtiff/tiffconf.h
@@ -28,6 +28,13 @@
28
29
/* Signed 64-bit type */
30
/* #undef TIFF_INT64_T */
31
+#ifdef __REACTOS__
32
+#ifdef __GNUC__
33
+#define TIFF_INT64_T signed long long
34
+#else
35
+#define TIFF_INT64_T signed __int64
36
+#endif
37
38
39
/* Signed 8-bit type */
40
/* #undef TIFF_INT8_T */
@@ -45,7 +52,11 @@
45
52
/* #undef TIFF_UINT8_T */
46
53
47
54
/* Signed size type */
55
+#if defined(__REACTOS__) && defined(_WIN64)
56
+#define TIFF_SSIZE_T TIFF_INT64_T
57
48
58
#define TIFF_SSIZE_T signed int
59
49
60
50
61
/* Compatibility stuff. */
51
62
0 commit comments