summaryrefslogtreecommitdiff
path: root/libtiff/tiffio.h
diff options
context:
space:
mode:
authorBob Friesenhahn <bfriesen@simple.dallas.tx.us>2007-06-26 20:05:33 +0000
committerBob Friesenhahn <bfriesen@simple.dallas.tx.us>2007-06-26 20:05:33 +0000
commit671e3708388f86595d46c3d484a98a8f84edbcf8 (patch)
tree9b396fc7011a882659c3ff3ecadf66639b540e7e /libtiff/tiffio.h
parent9cc5ffaf116e0a8cd9f2a3e2985eb72cf9f46ed5 (diff)
downloadlibtiff-git-671e3708388f86595d46c3d484a98a8f84edbcf8.tar.gz
Added support for a TIFF_PTRDIFF_T type to use when doing pointer arithmetic.
Diffstat (limited to 'libtiff/tiffio.h')
-rw-r--r--libtiff/tiffio.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libtiff/tiffio.h b/libtiff/tiffio.h
index 23e22963..e7a6e3de 100644
--- a/libtiff/tiffio.h
+++ b/libtiff/tiffio.h
@@ -1,4 +1,4 @@
-/* $Id: tiffio.h,v 1.68 2007-06-26 12:31:26 joris Exp $ */
+/* $Id: tiffio.h,v 1.69 2007-06-26 20:05:40 bfriesen Exp $ */
/*
* Copyright (c) 1988-1997 Sam Leffler
@@ -60,7 +60,7 @@ typedef struct tiff TIFF;
*/
/* this is the machine addressing size type, only it's signed, so make it int32
on 32bit machines, int64 on 64bit machines */
-typedef int32 tmsize_t;
+typedef TIFF_PTRDIFF_T tmsize_t;
/* the following are depriciated and should be replaced by their defining
counterparts */
typedef uint32 ttag_t; /* directory tag */