summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2017-11-23 10:53:30 +0100
committerTor Andersson <tor.andersson@artifex.com>2017-11-23 10:53:51 +0100
commita05a5b462d9af5bd333b640079bf05c6bf3b6dce (patch)
treee49b8bd8d128b5284344591e214bd6fec01eef22 /include
parent7a830d934ad2c962aefd9c44878d97f6c2852260 (diff)
downloadmupdf-a05a5b462d9af5bd333b640079bf05c6bf3b6dce.tar.xz
Make time stamps 64-bit integers.
Future proof the API for the Year 2038 problem.
Diffstat (limited to 'include')
-rw-r--r--include/mupdf/pdf/annot.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mupdf/pdf/annot.h b/include/mupdf/pdf/annot.h
index 3ec2bc1f..c55f22c5 100644
--- a/include/mupdf/pdf/annot.h
+++ b/include/mupdf/pdf/annot.h
@@ -207,12 +207,12 @@ void pdf_set_annot_author(fz_context *ctx, pdf_annot *annot, const char *author)
/*
pdf_annot_modification_date: Get annotation's modification date in seconds since the epoch.
*/
-int pdf_annot_modification_date(fz_context *ctx, pdf_annot *annot);
+int64_t pdf_annot_modification_date(fz_context *ctx, pdf_annot *annot);
/*
pdf_set_annot_modification_date: Set annotation's modification date in seconds since the epoch.
*/
-void pdf_set_annot_modification_date(fz_context *ctx, pdf_annot *annot, int time);
+void pdf_set_annot_modification_date(fz_context *ctx, pdf_annot *annot, int64_t time);
/*
pdf_set_free_text_details: set the position, text, font and color for a free text annotation.