summaryrefslogtreecommitdiff
path: root/fitz/fitz-internal.h
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2012-08-16 14:26:37 +0200
committerTor Andersson <tor.andersson@artifex.com>2012-08-16 14:26:37 +0200
commit48d7b86a6f305eced526ebb7a85822f85139752f (patch)
tree94a2e56d6007b6df93bf0a71c7e187d3c2156523 /fitz/fitz-internal.h
parent7003d3e463e8a28eeccbf97ee691efc9d744cd53 (diff)
downloadmupdf-48d7b86a6f305eced526ebb7a85822f85139752f.tar.xz
Fix 64-bit integer typedefs for MSVC.
Diffstat (limited to 'fitz/fitz-internal.h')
-rw-r--r--fitz/fitz-internal.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/fitz/fitz-internal.h b/fitz/fitz-internal.h
index d850f5e4..6f5a165d 100644
--- a/fitz/fitz-internal.h
+++ b/fitz/fitz-internal.h
@@ -13,6 +13,7 @@ typedef __int64 int64_t;
typedef unsigned char uint8_t;
typedef unsigned short int uint16_t;
typedef unsigned int uint32_t;
+typedef unsigned __int64 uint64_t;
#else
#include <inttypes.h>