Skip to content

Commit cad5873

Browse files
committed
! Update to MuPDF 1.24.3
1 parent 6fce27f commit cad5873

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

Demo/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ static class NativeMethods
114114
const uint FZ_STORE_DEFAULT = 256 << 20;
115115
const string DLL = "MuPDFLib.dll";
116116
// note: modify the version number to match the FZ_VERSION definition in "include\fitz\version.h" file
117-
const string FZ_VERSION = "1.24.1";
117+
const string FZ_VERSION = "1.24.3";
118118

119119
[DllImport(DLL, CallingConvention = CC.Cdecl, EntryPoint = "fz_new_context_imp", BestFitMapping = false)]
120120
static extern IntPtr NewContext(IntPtr alloc, IntPtr locks, uint max_store, [MarshalAs(UnmanagedType.LPStr)] string fz_version);

MuPDFLib/libmupdf.def

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -599,6 +599,7 @@ EXPORTS
599599
fz_tell_output
600600
fz_flush_output
601601
fz_close_output
602+
fz_reset_output
602603
fz_drop_output
603604
fz_output_supports_stream
604605
fz_stream_from_output
@@ -972,6 +973,7 @@ EXPORTS
972973
fz_new_pdf_writer
973974
fz_new_pdf_writer_with_output
974975
fz_new_svg_writer
976+
fz_new_svg_writer_with_output
975977
fz_new_text_writer
976978
fz_new_text_writer_with_output
977979
fz_new_odt_writer
@@ -1058,6 +1060,10 @@ EXPORTS
10581060

10591061
pdf_string_from_annot_type
10601062
pdf_annot_type_from_string
1063+
pdf_string_from_intent
1064+
pdf_name_from_intent
1065+
pdf_intent_from_string
1066+
pdf_intent_from_name
10611067
pdf_line_ending_from_name
10621068
pdf_line_ending_from_string
10631069
pdf_name_from_line_ending
@@ -1175,6 +1181,9 @@ EXPORTS
11751181
pdf_set_annot_modification_date
11761182
pdf_annot_creation_date
11771183
pdf_set_annot_creation_date
1184+
pdf_annot_has_intent
1185+
pdf_annot_intent
1186+
pdf_set_annot_intent
11781187
pdf_parse_default_appearance
11791188
pdf_print_default_appearance
11801189
pdf_annot_default_appearance
@@ -1384,6 +1393,7 @@ EXPORTS
13841393
pdf_count_q_balance
13851394
pdf_new_run_processor
13861395
pdf_new_buffer_processor
1396+
pdf_reset_processor
13871397
pdf_new_output_processor
13881398
pdf_new_sanitize_filter
13891399
pdf_filter_xobject_instance

0 commit comments

Comments
 (0)