summaryrefslogtreecommitdiff
path: root/fitz/fitz.h
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2012-01-11 23:27:22 +0100
committerTor Andersson <tor.andersson@artifex.com>2012-01-11 23:27:22 +0100
commitaaf451799bb046b6758a73fdb3c8fb88692ac776 (patch)
tree13ede9863b14778c3e1feee9e9f2fa230842d6df /fitz/fitz.h
parent209f30bee3121bbae32799b0bbb10f5e6db4158c (diff)
downloadmupdf-aaf451799bb046b6758a73fdb3c8fb88692ac776.tar.xz
Use enum for FZ_STORE_DEFAULT default size.
Diffstat (limited to 'fitz/fitz.h')
-rw-r--r--fitz/fitz.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/fitz/fitz.h b/fitz/fitz.h
index 7bb12397..d38945b8 100644
--- a/fitz/fitz.h
+++ b/fitz/fitz.h
@@ -729,7 +729,8 @@ struct fz_storable_s {
} while (0)
enum {
- FZ_STORE_UNLIMITED = 0
+ FZ_STORE_UNLIMITED = 0,
+ FZ_STORE_DEFAULT = 256 << 20,
};
void fz_new_store_context(fz_context *ctx, unsigned int max);