├── .clang-format ├── .clang-tidy ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build.yml │ ├── codeql.yml │ └── daily.yml ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── AUTHORS ├── BACKERS.md ├── COPYING ├── COPYING.BSD ├── TRANSLATORS ├── appx ├── SumatraLogo310x150.png ├── SumatraLogo310x150.psd ├── SumatraLogo310x310.png ├── SumatraLogo310x310.psd ├── SumatraPDF_44x44.png ├── SumatraPDF_StoreLogo_150x150.png └── fileicon.png ├── asan.supp ├── bin ├── MakeLZSA.exe ├── bin2coff.exe ├── efi.exe ├── lzma.exe ├── nasm.exe ├── pigz.exe └── premake5.exe ├── do ├── build.go ├── check_accesskyes.go ├── clang_tidy_format.go ├── compress.go ├── gen_docs.go ├── gen_docs.search.html ├── gen_docs.search.js ├── git.go ├── github_ci.go ├── main.go ├── scripts │ ├── SquareTree.py │ ├── check_accesskeys.py │ ├── gen_htmlparserlookup.py │ ├── gen_libmupdf.def.py │ ├── metadata │ │ ├── gen_mui.py │ │ ├── gen_txt.py │ │ └── metadata.py │ ├── reftest.py │ ├── render-benchmark.py │ ├── test-unarr.py │ └── update_auto_update_ver.py ├── settings_gen_code.go ├── settings_gen_def.go ├── settings_gen_html.go ├── sign.go ├── trans_download.go ├── trans_gen.go ├── trans_langs.go ├── translations.go ├── update_auto_update_ver.go ├── upload_storage.go ├── util.go ├── vs.go └── wc.go ├── docs ├── manual.dat ├── manual.tmpl.html ├── md │ ├── .obsidian │ │ ├── app.json │ │ ├── appearance.json │ │ └── core-plugins.json │ ├── Accessibility-and-Text-to-Speech.md │ ├── Advanced-options-settings.md │ ├── Build-system.md │ ├── Command-Palette.md │ ├── Command-line-arguments.md │ ├── Commands.md │ ├── Configure-for-restricted-use.md │ ├── Contribute-to-SumatraPDF.md │ ├── Contribute-translation.md │ ├── Corrupted-installation.md │ ├── Customize-external-viewers.md │ ├── Customize-search-translation-services.md │ ├── Customize-theme-colors.md │ ├── Customize-toolbar.md │ ├── Customizing-eBook-UI.md │ ├── Customizing-keyboard-shortcuts.md │ ├── DDE-Commands.md │ ├── Debugging-Sumatra.md │ ├── Editing-annotations.md │ ├── How-to-submit-bug-reports.md │ ├── How-we-store-settings.md │ ├── Installer-cmd-line-arguments.md │ ├── Is-there-a-virus-in-Sumatra-sources.md │ ├── Keyboard-shortcuts.md │ ├── LaTeX-integration.md │ ├── Logview.md │ ├── Reporting-printing-bugs.md │ ├── Scrolling-and-zooming.md │ ├── Set-as-default-PDF-viewer.md │ ├── Source-code-downloads.md │ ├── Submit-crash-report.md │ ├── SumatraPDF-documentation.md │ ├── Supported-document-formats.md │ ├── Uninstalling-SumatraPDF.md │ ├── Update-check-doesnt-work.md │ ├── Using-DrMemory.md │ ├── Using-OpenCppCoverage.md │ ├── Version-history.md │ ├── Why-only-Windows.md │ └── img │ │ ├── annot-context-menu.png │ │ ├── annot-unsaved-changes.png │ │ ├── annotation-editor.png │ │ ├── choose_app.png │ │ ├── cmd-palette-translate.png │ │ ├── command-palette.png │ │ ├── context-menu-annot-from-sel.png │ │ ├── context-menu-annot-under-cursor.png │ │ ├── context-menu-select-in-editor.png │ │ ├── context-menu-selection.png │ │ ├── context-menu-translate.png │ │ ├── default-apps.png │ │ ├── explorer_menu_open_with.png │ │ ├── select-sumatrapdf.png │ │ ├── settings-app.png │ │ ├── toolbar.png │ │ ├── uninstall.png │ │ └── unsaved-annotations-dialog.png ├── notes.txt ├── releasenotes.txt ├── sumatrapdfrestrict.ini ├── wishlist.txt └── www │ ├── favicon.ico │ ├── gen_toc.js │ ├── notion.css │ └── sumatra.css ├── doit.bat ├── doit.sh ├── drmem-sup.txt ├── ext ├── CHMLib │ ├── AUTHORS │ ├── COPYING │ ├── NEWS │ ├── NOTES │ ├── README │ ├── chm_lib.c │ ├── chm_lib.h │ ├── lzx.c │ └── lzx.h ├── _patches │ ├── CHMLib.patch │ ├── bzip2.patch │ ├── freetype2.patch │ ├── libdjvu.patch │ ├── libjpeg-turbo.patch │ └── synctex.patch ├── bzip2 │ ├── CHANGES │ ├── LICENSE │ ├── Makefile │ ├── Makefile-libbz2_so │ ├── README │ ├── README.COMPILATION.PROBLEMS │ ├── README.XML.STUFF │ ├── blocksort.c │ ├── bz-common.xsl │ ├── bz-fo.xsl │ ├── bz-html.xsl │ ├── bz_internal_error.c │ ├── bzdiff │ ├── bzdiff.1 │ ├── bzgrep │ ├── bzgrep.1 │ ├── bzip.css │ ├── bzip2.1 │ ├── bzip2.1.preformatted │ ├── bzip2.c │ ├── bzip2.txt │ ├── bzip2recover.c │ ├── bzip_all.c │ ├── bzlib.c │ ├── bzlib.h │ ├── bzlib_private.h │ ├── bzmore │ ├── bzmore.1 │ ├── compress.c │ ├── crctable.c │ ├── decompress.c │ ├── dlltest.c │ ├── dlltest.dsp │ ├── entities.xml │ ├── format.pl │ ├── huffman.c │ ├── libbz2.def │ ├── libbz2.dsp │ ├── makefile.msc │ ├── mk251.c │ ├── randtable.c │ ├── spewG.c │ ├── unzcrash.c │ ├── words0 │ ├── words1 │ ├── words2 │ ├── words3 │ └── xmlproc.sh ├── darkmodelib │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE-MIT.md │ ├── LICENSE.md │ ├── docs │ │ ├── LICENSE-PolyHook_2_0.md │ │ ├── LICENSE-UAHMenuBar.md │ │ └── LICENSE-win32-darkmode.md │ ├── include │ │ └── DarkModeSubclass.h │ └── src │ │ ├── DarkMode.cpp │ │ ├── DarkMode.h │ │ ├── DarkModeSubclass.cpp │ │ ├── IatHook.h │ │ ├── StdAfx.h │ │ ├── UAHMenuBar.h │ │ └── Version.h ├── dav1d │ ├── .gitignore │ ├── .gitlab-ci.yml │ ├── CONTRIBUTING.md │ ├── COPYING │ ├── NEWS │ ├── README.md │ ├── THANKS.md │ ├── doc │ │ ├── Doxyfile.in.in │ │ ├── PATENTS │ │ ├── dav1d_logo.png │ │ ├── dav1d_logo.svg │ │ └── meson.build │ ├── examples │ │ ├── dav1dplay.c │ │ ├── dp_fifo.c │ │ ├── dp_fifo.h │ │ ├── dp_renderer.h │ │ ├── dp_renderer_placebo.c │ │ ├── dp_renderer_sdl.c │ │ └── meson.build │ ├── gcovr.cfg │ ├── include │ │ ├── common │ │ │ ├── attributes.h │ │ │ ├── bitdepth.h │ │ │ ├── dump.h │ │ │ ├── frame.h │ │ │ ├── intops.h │ │ │ └── validate.h │ │ ├── compat │ │ │ ├── gcc │ │ │ │ └── stdatomic.h │ │ │ ├── getopt.h │ │ │ └── msvc │ │ │ │ └── stdatomic.h │ │ ├── config.asm │ │ ├── config.h │ │ ├── dav1d │ │ │ ├── common.h │ │ │ ├── data.h │ │ │ ├── dav1d.h │ │ │ ├── headers.h │ │ │ ├── meson.build │ │ │ ├── picture.h │ │ │ ├── version.h │ │ │ └── version.h.in │ │ ├── meson.build │ │ ├── vcs_version.h │ │ └── vcs_version.h.in │ ├── meson.build │ ├── meson_options.txt │ ├── package │ │ ├── crossfiles │ │ │ ├── aarch64-android.meson │ │ │ ├── arm-android.meson │ │ │ ├── i686-linux32.meson │ │ │ ├── i686-w64-mingw32.meson │ │ │ └── x86_64-w64-mingw32.meson │ │ └── snap │ │ │ └── snapcraft.yaml │ ├── src │ │ ├── arm │ │ │ ├── 32 │ │ │ │ ├── cdef.S │ │ │ │ ├── cdef16.S │ │ │ │ ├── cdef_tmpl.S │ │ │ │ ├── filmgrain.S │ │ │ │ ├── filmgrain16.S │ │ │ │ ├── ipred.S │ │ │ │ ├── ipred16.S │ │ │ │ ├── itx.S │ │ │ │ ├── itx16.S │ │ │ │ ├── loopfilter.S │ │ │ │ ├── loopfilter16.S │ │ │ │ ├── looprestoration.S │ │ │ │ ├── looprestoration16.S │ │ │ │ ├── looprestoration_common.S │ │ │ │ ├── looprestoration_tmpl.S │ │ │ │ ├── mc.S │ │ │ │ ├── mc16.S │ │ │ │ ├── msac.S │ │ │ │ ├── refmvs.S │ │ │ │ └── util.S │ │ │ ├── 64 │ │ │ │ ├── cdef.S │ │ │ │ ├── cdef16.S │ │ │ │ ├── cdef_tmpl.S │ │ │ │ ├── filmgrain.S │ │ │ │ ├── filmgrain16.S │ │ │ │ ├── ipred.S │ │ │ │ ├── ipred16.S │ │ │ │ ├── itx.S │ │ │ │ ├── itx16.S │ │ │ │ ├── loopfilter.S │ │ │ │ ├── loopfilter16.S │ │ │ │ ├── looprestoration.S │ │ │ │ ├── looprestoration16.S │ │ │ │ ├── looprestoration_common.S │ │ │ │ ├── looprestoration_tmpl.S │ │ │ │ ├── mc.S │ │ │ │ ├── mc16.S │ │ │ │ ├── msac.S │ │ │ │ ├── refmvs.S │ │ │ │ └── util.S │ │ │ ├── asm-offsets.h │ │ │ ├── asm.S │ │ │ ├── cdef_init_tmpl.c │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── filmgrain_init_tmpl.c │ │ │ ├── ipred_init_tmpl.c │ │ │ ├── itx_init_tmpl.c │ │ │ ├── loopfilter_init_tmpl.c │ │ │ ├── looprestoration_init_tmpl.c │ │ │ ├── mc_init_tmpl.c │ │ │ ├── msac.h │ │ │ └── refmvs_init.c │ │ ├── cdef.h │ │ ├── cdef_apply.h │ │ ├── cdef_apply_tmpl.c │ │ ├── cdef_tmpl.c │ │ ├── cdf.c │ │ ├── cdf.h │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── ctx.h │ │ ├── data.c │ │ ├── data.h │ │ ├── dav1d.rc.in │ │ ├── decode.c │ │ ├── decode.h │ │ ├── dequant_tables.c │ │ ├── dequant_tables.h │ │ ├── env.h │ │ ├── ext │ │ │ └── x86 │ │ │ │ └── x86inc.asm │ │ ├── fg_apply.h │ │ ├── fg_apply_tmpl.c │ │ ├── filmgrain.h │ │ ├── filmgrain_tmpl.c │ │ ├── getbits.c │ │ ├── getbits.h │ │ ├── internal.h │ │ ├── intra_edge.c │ │ ├── intra_edge.h │ │ ├── ipred.h │ │ ├── ipred_prepare.h │ │ ├── ipred_prepare_tmpl.c │ │ ├── ipred_tmpl.c │ │ ├── itx.h │ │ ├── itx_1d.c │ │ ├── itx_1d.h │ │ ├── itx_tmpl.c │ │ ├── levels.h │ │ ├── lf_apply.h │ │ ├── lf_apply_tmpl.c │ │ ├── lf_mask.c │ │ ├── lf_mask.h │ │ ├── lib.c │ │ ├── log.c │ │ ├── log.h │ │ ├── loopfilter.h │ │ ├── loopfilter_tmpl.c │ │ ├── looprestoration.h │ │ ├── looprestoration_tmpl.c │ │ ├── lr_apply.h │ │ ├── lr_apply_tmpl.c │ │ ├── mc.h │ │ ├── mc_tmpl.c │ │ ├── mem.c │ │ ├── mem.h │ │ ├── meson.build │ │ ├── msac.c │ │ ├── msac.h │ │ ├── obu.c │ │ ├── obu.h │ │ ├── picture.c │ │ ├── picture.h │ │ ├── ppc │ │ │ ├── cdef_init_tmpl.c │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── dav1d_types.h │ │ │ └── looprestoration_init_tmpl.c │ │ ├── qm.c │ │ ├── qm.h │ │ ├── recon.h │ │ ├── recon_tmpl.c │ │ ├── ref.c │ │ ├── ref.h │ │ ├── refmvs.c │ │ ├── refmvs.h │ │ ├── scan.c │ │ ├── scan.h │ │ ├── sumatra_bitdepth_16.c │ │ ├── sumatra_bitdepth_16_2.c │ │ ├── sumatra_bitdepth_8.c │ │ ├── sumatra_bitdepth_8_2.c │ │ ├── tables.c │ │ ├── tables.h │ │ ├── thread.h │ │ ├── thread_data.h │ │ ├── thread_task.c │ │ ├── thread_task.h │ │ ├── warpmv.c │ │ ├── warpmv.h │ │ ├── wedge.c │ │ ├── wedge.h │ │ ├── win32 │ │ │ └── thread.c │ │ └── x86 │ │ │ ├── cdef16_avx2.asm │ │ │ ├── cdef16_avx512.asm │ │ │ ├── cdef16_sse.asm │ │ │ ├── cdef_avx2.asm │ │ │ ├── cdef_avx512.asm │ │ │ ├── cdef_init_tmpl.c │ │ │ ├── cdef_sse.asm │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── cpuid.asm │ │ │ ├── filmgrain16_avx2.asm │ │ │ ├── filmgrain16_avx512.asm │ │ │ ├── filmgrain16_sse.asm │ │ │ ├── filmgrain_avx2.asm │ │ │ ├── filmgrain_avx512.asm │ │ │ ├── filmgrain_common.asm │ │ │ ├── filmgrain_init_tmpl.c │ │ │ ├── filmgrain_sse.asm │ │ │ ├── ipred16_avx2.asm │ │ │ ├── ipred16_avx512.asm │ │ │ ├── ipred16_sse.asm │ │ │ ├── ipred_avx2.asm │ │ │ ├── ipred_avx512.asm │ │ │ ├── ipred_init_tmpl.c │ │ │ ├── ipred_sse.asm │ │ │ ├── itx16_avx2.asm │ │ │ ├── itx16_sse.asm │ │ │ ├── itx_avx2.asm │ │ │ ├── itx_avx512.asm │ │ │ ├── itx_init_tmpl.c │ │ │ ├── itx_sse.asm │ │ │ ├── loopfilter16_avx2.asm │ │ │ ├── loopfilter16_sse.asm │ │ │ ├── loopfilter_avx2.asm │ │ │ ├── loopfilter_avx512.asm │ │ │ ├── loopfilter_init_tmpl.c │ │ │ ├── loopfilter_sse.asm │ │ │ ├── looprestoration16_avx2.asm │ │ │ ├── looprestoration16_avx512.asm │ │ │ ├── looprestoration16_sse.asm │ │ │ ├── looprestoration_avx2.asm │ │ │ ├── looprestoration_avx512.asm │ │ │ ├── looprestoration_init_tmpl.c │ │ │ ├── looprestoration_sse.asm │ │ │ ├── mc16_avx2.asm │ │ │ ├── mc16_avx512.asm │ │ │ ├── mc16_sse.asm │ │ │ ├── mc_avx2.asm │ │ │ ├── mc_avx512.asm │ │ │ ├── mc_init_tmpl.c │ │ │ ├── mc_sse.asm │ │ │ ├── msac.asm │ │ │ ├── msac.h │ │ │ ├── msac_init.c │ │ │ ├── refmvs.asm │ │ │ └── refmvs_init.c │ ├── tests │ │ ├── checkasm │ │ │ ├── arm │ │ │ │ ├── checkasm_32.S │ │ │ │ └── checkasm_64.S │ │ │ ├── cdef.c │ │ │ ├── checkasm.c │ │ │ ├── checkasm.h │ │ │ ├── filmgrain.c │ │ │ ├── ipred.c │ │ │ ├── itx.c │ │ │ ├── loopfilter.c │ │ │ ├── looprestoration.c │ │ │ ├── mc.c │ │ │ ├── msac.c │ │ │ ├── refmvs.c │ │ │ └── x86 │ │ │ │ └── checkasm.asm │ │ ├── header_test.c │ │ ├── libfuzzer │ │ │ ├── alloc_fail.c │ │ │ ├── alloc_fail.h │ │ │ ├── dav1d_fuzzer.c │ │ │ ├── dav1d_fuzzer.h │ │ │ ├── main.c │ │ │ └── meson.build │ │ ├── meson.build │ │ └── seek_stress.c │ └── tools │ │ ├── compat │ │ └── getopt.c │ │ ├── dav1d.c │ │ ├── dav1d.manifest │ │ ├── dav1d.rc.in │ │ ├── dav1d_cli_parse.c │ │ ├── dav1d_cli_parse.h │ │ ├── input │ │ ├── annexb.c │ │ ├── demuxer.h │ │ ├── input.c │ │ ├── input.h │ │ ├── ivf.c │ │ ├── parse.h │ │ └── section5.c │ │ ├── meson.build │ │ └── output │ │ ├── md5.c │ │ ├── muxer.h │ │ ├── null.c │ │ ├── output.c │ │ ├── output.h │ │ ├── xxhash.c │ │ ├── y4m2.c │ │ └── yuv.c ├── extract │ ├── COPYING │ ├── Makefile │ ├── README │ ├── include │ │ └── extract │ │ │ ├── alloc.h │ │ │ ├── buffer.h │ │ │ └── extract.h │ └── src │ │ ├── alloc.c │ │ ├── astring.c │ │ ├── astring.h │ │ ├── boxer.c │ │ ├── buffer-test.c │ │ ├── buffer.c │ │ ├── compat_stdint.h │ │ ├── compat_va_copy.h │ │ ├── document.c │ │ ├── document.h │ │ ├── docx.c │ │ ├── docx.h │ │ ├── docx_template.c │ │ ├── docx_template.h │ │ ├── docx_template_build.py │ │ ├── extract-exe.c │ │ ├── extract.c │ │ ├── html.c │ │ ├── html.h │ │ ├── join.c │ │ ├── json.c │ │ ├── json.h │ │ ├── mem.c │ │ ├── mem.h │ │ ├── memento.c │ │ ├── memento.h │ │ ├── memento.py │ │ ├── misc-test.c │ │ ├── odt.c │ │ ├── odt.h │ │ ├── odt_template.c │ │ ├── odt_template.h │ │ ├── outf.c │ │ ├── outf.h │ │ ├── rect.c │ │ ├── sys.c │ │ ├── sys.h │ │ ├── template.docx │ │ ├── template.odt │ │ ├── text.c │ │ ├── text.h │ │ ├── xml.c │ │ ├── xml.h │ │ ├── zip-test.c │ │ ├── zip.c │ │ └── zip.h ├── freetype │ ├── .clang-format │ ├── .gitignore │ ├── .mailmap │ ├── CMakeLists.txt │ ├── LICENSE.TXT │ ├── MSBuild.rsp │ ├── MSBuild.sln │ ├── Makefile │ ├── README │ ├── README.git │ ├── autogen.sh │ ├── configure │ ├── devel │ │ ├── ft2build.h │ │ └── ftoption.h │ ├── docs │ │ ├── .gitignore │ │ ├── CHANGES │ │ ├── CMAKE │ │ ├── CUSTOMIZE │ │ ├── DEBUG │ │ ├── DOCGUIDE │ │ ├── FTL.TXT │ │ ├── GPLv2.TXT │ │ ├── INSTALL │ │ ├── INSTALL.ANY │ │ ├── INSTALL.CROSS │ │ ├── INSTALL.GNU │ │ ├── INSTALL.MAC │ │ ├── INSTALL.UNIX │ │ ├── INSTALL.VMS │ │ ├── MAKEPP │ │ ├── PROBLEMS │ │ ├── README │ │ ├── TODO │ │ ├── VERSIONS.TXT │ │ ├── formats.txt │ │ ├── freetype-config.1 │ │ ├── freetype-web.txt │ │ ├── markdown │ │ │ ├── images │ │ │ │ └── favico.ico │ │ │ ├── javascripts │ │ │ │ └── extra.js │ │ │ └── stylesheets │ │ │ │ └── extra.css │ │ ├── raster.txt │ │ └── release │ ├── include │ │ ├── freetype │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ ├── ftstdlib.h │ │ │ │ ├── integer-types.h │ │ │ │ ├── mac-support.h │ │ │ │ └── public-macros.h │ │ │ ├── freetype.h │ │ │ ├── ftadvanc.h │ │ │ ├── ftbbox.h │ │ │ ├── ftbdf.h │ │ │ ├── ftbitmap.h │ │ │ ├── ftbzip2.h │ │ │ ├── ftcache.h │ │ │ ├── ftchapters.h │ │ │ ├── ftcid.h │ │ │ ├── ftcolor.h │ │ │ ├── ftdriver.h │ │ │ ├── fterrdef.h │ │ │ ├── fterrors.h │ │ │ ├── ftfntfmt.h │ │ │ ├── ftgasp.h │ │ │ ├── ftglyph.h │ │ │ ├── ftgxval.h │ │ │ ├── ftgzip.h │ │ │ ├── ftimage.h │ │ │ ├── ftincrem.h │ │ │ ├── ftlcdfil.h │ │ │ ├── ftlist.h │ │ │ ├── ftlogging.h │ │ │ ├── ftlzw.h │ │ │ ├── ftmac.h │ │ │ ├── ftmm.h │ │ │ ├── ftmodapi.h │ │ │ ├── ftmoderr.h │ │ │ ├── ftotval.h │ │ │ ├── ftoutln.h │ │ │ ├── ftparams.h │ │ │ ├── ftpfr.h │ │ │ ├── ftrender.h │ │ │ ├── ftsizes.h │ │ │ ├── ftsnames.h │ │ │ ├── ftstroke.h │ │ │ ├── ftsynth.h │ │ │ ├── ftsystem.h │ │ │ ├── fttrigon.h │ │ │ ├── fttypes.h │ │ │ ├── ftwinfnt.h │ │ │ ├── internal │ │ │ │ ├── autohint.h │ │ │ │ ├── cffotypes.h │ │ │ │ ├── cfftypes.h │ │ │ │ ├── compiler-macros.h │ │ │ │ ├── ftcalc.h │ │ │ │ ├── ftdebug.h │ │ │ │ ├── ftdrv.h │ │ │ │ ├── ftgloadr.h │ │ │ │ ├── fthash.h │ │ │ │ ├── ftmemory.h │ │ │ │ ├── ftmmtypes.h │ │ │ │ ├── ftobjs.h │ │ │ │ ├── ftpsprop.h │ │ │ │ ├── ftrfork.h │ │ │ │ ├── ftserv.h │ │ │ │ ├── ftstream.h │ │ │ │ ├── fttrace.h │ │ │ │ ├── ftvalid.h │ │ │ │ ├── psaux.h │ │ │ │ ├── pshints.h │ │ │ │ ├── services │ │ │ │ │ ├── svbdf.h │ │ │ │ │ ├── svcfftl.h │ │ │ │ │ ├── svcid.h │ │ │ │ │ ├── svfntfmt.h │ │ │ │ │ ├── svgldict.h │ │ │ │ │ ├── svgxval.h │ │ │ │ │ ├── svkern.h │ │ │ │ │ ├── svmetric.h │ │ │ │ │ ├── svmm.h │ │ │ │ │ ├── svotval.h │ │ │ │ │ ├── svpfr.h │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ ├── svprop.h │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ ├── svtteng.h │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ └── svwinfnt.h │ │ │ │ ├── sfnt.h │ │ │ │ ├── svginterface.h │ │ │ │ ├── t1types.h │ │ │ │ ├── tttypes.h │ │ │ │ └── wofftypes.h │ │ │ ├── otsvg.h │ │ │ ├── t1tables.h │ │ │ ├── ttnameid.h │ │ │ ├── tttables.h │ │ │ └── tttags.h │ │ └── ft2build.h │ ├── meson.build │ ├── meson_options.txt │ ├── modules.cfg │ ├── objs │ │ ├── .gitignore │ │ └── README │ ├── src │ │ ├── autofit │ │ │ ├── afblue.c │ │ │ ├── afblue.cin │ │ │ ├── afblue.dat │ │ │ ├── afblue.h │ │ │ ├── afblue.hin │ │ │ ├── afcjk.c │ │ │ ├── afcjk.h │ │ │ ├── afcover.h │ │ │ ├── afdummy.c │ │ │ ├── afdummy.h │ │ │ ├── aferrors.h │ │ │ ├── afglobal.c │ │ │ ├── afglobal.h │ │ │ ├── afhints.c │ │ │ ├── afhints.h │ │ │ ├── afindic.c │ │ │ ├── afindic.h │ │ │ ├── aflatin.c │ │ │ ├── aflatin.h │ │ │ ├── afloader.c │ │ │ ├── afloader.h │ │ │ ├── afmodule.c │ │ │ ├── afmodule.h │ │ │ ├── afranges.c │ │ │ ├── afranges.h │ │ │ ├── afscript.h │ │ │ ├── afshaper.c │ │ │ ├── afshaper.h │ │ │ ├── afstyles.h │ │ │ ├── aftypes.h │ │ │ ├── afws-decl.h │ │ │ ├── afws-iter.h │ │ │ ├── autofit.c │ │ │ ├── ft-hb.c │ │ │ ├── ft-hb.h │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── base │ │ │ ├── ftadvanc.c │ │ │ ├── ftbase.c │ │ │ ├── ftbase.h │ │ │ ├── ftbbox.c │ │ │ ├── ftbdf.c │ │ │ ├── ftbitmap.c │ │ │ ├── ftcalc.c │ │ │ ├── ftcid.c │ │ │ ├── ftcolor.c │ │ │ ├── ftdbgmem.c │ │ │ ├── ftdebug.c │ │ │ ├── fterrors.c │ │ │ ├── ftfntfmt.c │ │ │ ├── ftfstype.c │ │ │ ├── ftgasp.c │ │ │ ├── ftgloadr.c │ │ │ ├── ftglyph.c │ │ │ ├── ftgxval.c │ │ │ ├── fthash.c │ │ │ ├── ftinit.c │ │ │ ├── ftlcdfil.c │ │ │ ├── ftmac.c │ │ │ ├── ftmm.c │ │ │ ├── ftobjs.c │ │ │ ├── ftotval.c │ │ │ ├── ftoutln.c │ │ │ ├── ftpatent.c │ │ │ ├── ftpfr.c │ │ │ ├── ftpsprop.c │ │ │ ├── ftrfork.c │ │ │ ├── ftsnames.c │ │ │ ├── ftstream.c │ │ │ ├── ftstroke.c │ │ │ ├── ftsynth.c │ │ │ ├── ftsystem.c │ │ │ ├── fttrigon.c │ │ │ ├── fttype1.c │ │ │ ├── ftutil.c │ │ │ ├── ftver.rc │ │ │ ├── ftwinfnt.c │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ └── rules.mk │ │ ├── bdf │ │ │ ├── README │ │ │ ├── bdf.c │ │ │ ├── bdf.h │ │ │ ├── bdfdrivr.c │ │ │ ├── bdfdrivr.h │ │ │ ├── bdferror.h │ │ │ ├── bdflib.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── bzip2 │ │ │ ├── ftbzip2.c │ │ │ └── rules.mk │ │ ├── cache │ │ │ ├── ftcache.c │ │ │ ├── ftcbasic.c │ │ │ ├── ftccache.c │ │ │ ├── ftccache.h │ │ │ ├── ftccback.h │ │ │ ├── ftccmap.c │ │ │ ├── ftcerror.h │ │ │ ├── ftcglyph.c │ │ │ ├── ftcglyph.h │ │ │ ├── ftcimage.c │ │ │ ├── ftcimage.h │ │ │ ├── ftcmanag.c │ │ │ ├── ftcmanag.h │ │ │ ├── ftcmru.c │ │ │ ├── ftcmru.h │ │ │ ├── ftcsbits.c │ │ │ ├── ftcsbits.h │ │ │ └── rules.mk │ │ ├── cff │ │ │ ├── cff.c │ │ │ ├── cffcmap.c │ │ │ ├── cffcmap.h │ │ │ ├── cffdrivr.c │ │ │ ├── cffdrivr.h │ │ │ ├── cfferrs.h │ │ │ ├── cffgload.c │ │ │ ├── cffgload.h │ │ │ ├── cffload.c │ │ │ ├── cffload.h │ │ │ ├── cffobjs.c │ │ │ ├── cffobjs.h │ │ │ ├── cffparse.c │ │ │ ├── cffparse.h │ │ │ ├── cfftoken.h │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── cid │ │ │ ├── ciderrs.h │ │ │ ├── cidgload.c │ │ │ ├── cidgload.h │ │ │ ├── cidload.c │ │ │ ├── cidload.h │ │ │ ├── cidobjs.c │ │ │ ├── cidobjs.h │ │ │ ├── cidparse.c │ │ │ ├── cidparse.h │ │ │ ├── cidriver.c │ │ │ ├── cidriver.h │ │ │ ├── cidtoken.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── type1cid.c │ │ ├── dlg │ │ │ ├── dlgwrap.c │ │ │ └── rules.mk │ │ ├── gxvalid │ │ │ ├── README │ │ │ ├── gxvalid.c │ │ │ ├── gxvalid.h │ │ │ ├── gxvbsln.c │ │ │ ├── gxvcommn.c │ │ │ ├── gxvcommn.h │ │ │ ├── gxverror.h │ │ │ ├── gxvfeat.c │ │ │ ├── gxvfeat.h │ │ │ ├── gxvfgen.c │ │ │ ├── gxvjust.c │ │ │ ├── gxvkern.c │ │ │ ├── gxvlcar.c │ │ │ ├── gxvmod.c │ │ │ ├── gxvmod.h │ │ │ ├── gxvmort.c │ │ │ ├── gxvmort.h │ │ │ ├── gxvmort0.c │ │ │ ├── gxvmort1.c │ │ │ ├── gxvmort2.c │ │ │ ├── gxvmort4.c │ │ │ ├── gxvmort5.c │ │ │ ├── gxvmorx.c │ │ │ ├── gxvmorx.h │ │ │ ├── gxvmorx0.c │ │ │ ├── gxvmorx1.c │ │ │ ├── gxvmorx2.c │ │ │ ├── gxvmorx4.c │ │ │ ├── gxvmorx5.c │ │ │ ├── gxvopbd.c │ │ │ ├── gxvprop.c │ │ │ ├── gxvtrak.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── gzip │ │ │ ├── README.freetype │ │ │ ├── adler32.c │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── ftgzip.c │ │ │ ├── ftzconf.h │ │ │ ├── gzguts.h │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── patches │ │ │ │ └── freetype-zlib.diff │ │ │ ├── rules.mk │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ ├── lzw │ │ │ ├── ftlzw.c │ │ │ ├── ftzopen.c │ │ │ ├── ftzopen.h │ │ │ └── rules.mk │ │ ├── otvalid │ │ │ ├── module.mk │ │ │ ├── otvalid.c │ │ │ ├── otvalid.h │ │ │ ├── otvbase.c │ │ │ ├── otvcommn.c │ │ │ ├── otvcommn.h │ │ │ ├── otverror.h │ │ │ ├── otvgdef.c │ │ │ ├── otvgpos.c │ │ │ ├── otvgpos.h │ │ │ ├── otvgsub.c │ │ │ ├── otvjstf.c │ │ │ ├── otvmath.c │ │ │ ├── otvmod.c │ │ │ ├── otvmod.h │ │ │ └── rules.mk │ │ ├── pcf │ │ │ ├── README │ │ │ ├── module.mk │ │ │ ├── pcf.c │ │ │ ├── pcf.h │ │ │ ├── pcfdrivr.c │ │ │ ├── pcfdrivr.h │ │ │ ├── pcferror.h │ │ │ ├── pcfread.c │ │ │ ├── pcfread.h │ │ │ ├── pcfutil.c │ │ │ ├── pcfutil.h │ │ │ └── rules.mk │ │ ├── pfr │ │ │ ├── module.mk │ │ │ ├── pfr.c │ │ │ ├── pfrcmap.c │ │ │ ├── pfrcmap.h │ │ │ ├── pfrdrivr.c │ │ │ ├── pfrdrivr.h │ │ │ ├── pfrerror.h │ │ │ ├── pfrgload.c │ │ │ ├── pfrgload.h │ │ │ ├── pfrload.c │ │ │ ├── pfrload.h │ │ │ ├── pfrobjs.c │ │ │ ├── pfrobjs.h │ │ │ ├── pfrsbit.c │ │ │ ├── pfrsbit.h │ │ │ ├── pfrtypes.h │ │ │ └── rules.mk │ │ ├── psaux │ │ │ ├── afmparse.c │ │ │ ├── afmparse.h │ │ │ ├── cffdecode.c │ │ │ ├── cffdecode.h │ │ │ ├── module.mk │ │ │ ├── psarrst.c │ │ │ ├── psarrst.h │ │ │ ├── psaux.c │ │ │ ├── psauxerr.h │ │ │ ├── psauxmod.c │ │ │ ├── psauxmod.h │ │ │ ├── psblues.c │ │ │ ├── psblues.h │ │ │ ├── psconv.c │ │ │ ├── psconv.h │ │ │ ├── pserror.c │ │ │ ├── pserror.h │ │ │ ├── psfixed.h │ │ │ ├── psfont.c │ │ │ ├── psfont.h │ │ │ ├── psft.c │ │ │ ├── psft.h │ │ │ ├── psglue.h │ │ │ ├── pshints.c │ │ │ ├── pshints.h │ │ │ ├── psintrp.c │ │ │ ├── psintrp.h │ │ │ ├── psobjs.c │ │ │ ├── psobjs.h │ │ │ ├── psread.c │ │ │ ├── psread.h │ │ │ ├── psstack.c │ │ │ ├── psstack.h │ │ │ ├── pstypes.h │ │ │ ├── rules.mk │ │ │ ├── t1cmap.c │ │ │ ├── t1cmap.h │ │ │ ├── t1decode.c │ │ │ └── t1decode.h │ │ ├── pshinter │ │ │ ├── module.mk │ │ │ ├── pshalgo.c │ │ │ ├── pshalgo.h │ │ │ ├── pshglob.c │ │ │ ├── pshglob.h │ │ │ ├── pshinter.c │ │ │ ├── pshmod.c │ │ │ ├── pshmod.h │ │ │ ├── pshnterr.h │ │ │ ├── pshrec.c │ │ │ ├── pshrec.h │ │ │ └── rules.mk │ │ ├── psnames │ │ │ ├── module.mk │ │ │ ├── psmodule.c │ │ │ ├── psmodule.h │ │ │ ├── psnamerr.h │ │ │ ├── psnames.c │ │ │ ├── pstables.h │ │ │ └── rules.mk │ │ ├── raster │ │ │ ├── ftmisc.h │ │ │ ├── ftraster.c │ │ │ ├── ftraster.h │ │ │ ├── ftrend1.c │ │ │ ├── ftrend1.h │ │ │ ├── module.mk │ │ │ ├── raster.c │ │ │ ├── rasterrs.h │ │ │ └── rules.mk │ │ ├── sdf │ │ │ ├── ftbsdf.c │ │ │ ├── ftsdf.c │ │ │ ├── ftsdf.h │ │ │ ├── ftsdfcommon.c │ │ │ ├── ftsdfcommon.h │ │ │ ├── ftsdferrs.h │ │ │ ├── ftsdfrend.c │ │ │ ├── ftsdfrend.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── sdf.c │ │ ├── sfnt │ │ │ ├── module.mk │ │ │ ├── pngshim.c │ │ │ ├── pngshim.h │ │ │ ├── rules.mk │ │ │ ├── sfdriver.c │ │ │ ├── sfdriver.h │ │ │ ├── sferrors.h │ │ │ ├── sfnt.c │ │ │ ├── sfobjs.c │ │ │ ├── sfobjs.h │ │ │ ├── sfwoff.c │ │ │ ├── sfwoff.h │ │ │ ├── sfwoff2.c │ │ │ ├── sfwoff2.h │ │ │ ├── ttbdf.c │ │ │ ├── ttbdf.h │ │ │ ├── ttcmap.c │ │ │ ├── ttcmap.h │ │ │ ├── ttcmapc.h │ │ │ ├── ttcolr.c │ │ │ ├── ttcolr.h │ │ │ ├── ttcpal.c │ │ │ ├── ttcpal.h │ │ │ ├── ttgpos.c │ │ │ ├── ttgpos.h │ │ │ ├── ttkern.c │ │ │ ├── ttkern.h │ │ │ ├── ttload.c │ │ │ ├── ttload.h │ │ │ ├── ttmtx.c │ │ │ ├── ttmtx.h │ │ │ ├── ttpost.c │ │ │ ├── ttpost.h │ │ │ ├── ttsbit.c │ │ │ ├── ttsbit.h │ │ │ ├── ttsvg.c │ │ │ ├── ttsvg.h │ │ │ ├── woff2tags.c │ │ │ └── woff2tags.h │ │ ├── smooth │ │ │ ├── ftgrays.c │ │ │ ├── ftgrays.h │ │ │ ├── ftsmerrs.h │ │ │ ├── ftsmooth.c │ │ │ ├── ftsmooth.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── smooth.c │ │ ├── svg │ │ │ ├── ftsvg.c │ │ │ ├── ftsvg.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── svg.c │ │ │ └── svgtypes.h │ │ ├── tools │ │ │ ├── afblue.pl │ │ │ ├── apinames.c │ │ │ ├── chktrcmp.py │ │ │ ├── cordic.py │ │ │ ├── ftrandom │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── ftrandom.c │ │ │ ├── glnames.py │ │ │ ├── make_distribution_archives.py │ │ │ ├── no-copyright │ │ │ ├── test_afm.c │ │ │ ├── test_bbox.c │ │ │ ├── test_trig.c │ │ │ ├── update-copyright │ │ │ ├── update-copyright-year │ │ │ └── vms_shorten_symbol.c │ │ ├── truetype │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── truetype.c │ │ │ ├── ttdriver.c │ │ │ ├── ttdriver.h │ │ │ ├── tterrors.h │ │ │ ├── ttgload.c │ │ │ ├── ttgload.h │ │ │ ├── ttgxvar.c │ │ │ ├── ttgxvar.h │ │ │ ├── ttinterp.c │ │ │ ├── ttinterp.h │ │ │ ├── ttobjs.c │ │ │ ├── ttobjs.h │ │ │ ├── ttpload.c │ │ │ ├── ttpload.h │ │ │ ├── ttsubpix.c │ │ │ └── ttsubpix.h │ │ ├── type1 │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── t1afm.c │ │ │ ├── t1afm.h │ │ │ ├── t1driver.c │ │ │ ├── t1driver.h │ │ │ ├── t1errors.h │ │ │ ├── t1gload.c │ │ │ ├── t1gload.h │ │ │ ├── t1load.c │ │ │ ├── t1load.h │ │ │ ├── t1objs.c │ │ │ ├── t1objs.h │ │ │ ├── t1parse.c │ │ │ ├── t1parse.h │ │ │ ├── t1tokens.h │ │ │ └── type1.c │ │ ├── type42 │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── t42drivr.c │ │ │ ├── t42drivr.h │ │ │ ├── t42error.h │ │ │ ├── t42objs.c │ │ │ ├── t42objs.h │ │ │ ├── t42parse.c │ │ │ ├── t42parse.h │ │ │ ├── t42types.h │ │ │ └── type42.c │ │ └── winfonts │ │ │ ├── fnterrs.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── winfnt.c │ │ │ └── winfnt.h │ ├── tests │ │ ├── README.md │ │ ├── issue-1063 │ │ │ └── main.c │ │ ├── meson.build │ │ └── scripts │ │ │ └── download-test-fonts.py │ └── vms_make.com ├── gumbo-parser │ ├── .clang-format │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGES.md │ ├── CONTRIBUTING.md │ ├── COPYING │ ├── DEBUGGING.md │ ├── Doxyfile │ ├── Makefile.am │ ├── README.md │ ├── THANKS │ ├── appveyor.yml │ ├── autogen.sh │ ├── benchmarks │ │ ├── arabic_newspapers.html │ │ ├── baidu.html │ │ ├── bbc.html │ │ ├── benchmark.cc │ │ ├── google.html │ │ ├── hacker_news.html │ │ ├── html5_spec.html │ │ ├── wikipedia.html │ │ ├── xinhua.html │ │ └── yahoo.html │ ├── configure.ac │ ├── examples │ │ ├── clean_text.cc │ │ ├── find_links.cc │ │ ├── get_title.c │ │ ├── positions_of_class.cc │ │ ├── prettyprint.cc │ │ └── serialize.cc │ ├── genperf.py │ ├── gentags.py │ ├── gtest.gyp │ ├── gumbo.pc.in │ ├── gumbo_parser.gyp │ ├── python │ │ └── gumbo │ │ │ ├── __init__.py │ │ │ ├── gumboc.py │ │ │ ├── gumboc_tags.py │ │ │ ├── gumboc_test.py │ │ │ ├── html5lib_adapter.py │ │ │ ├── html5lib_adapter_test.py │ │ │ ├── soup_adapter.py │ │ │ └── soup_adapter_test.py │ ├── setup.py │ ├── src │ │ ├── attribute.c │ │ ├── attribute.h │ │ ├── char_ref.c │ │ ├── char_ref.h │ │ ├── char_ref.rl │ │ ├── error.c │ │ ├── error.h │ │ ├── gumbo.h │ │ ├── insertion_mode.h │ │ ├── parser.c │ │ ├── parser.h │ │ ├── string_buffer.c │ │ ├── string_buffer.h │ │ ├── string_piece.c │ │ ├── string_piece.h │ │ ├── tag.c │ │ ├── tag.in │ │ ├── tag_enum.h │ │ ├── tag_gperf.h │ │ ├── tag_sizes.h │ │ ├── tag_strings.h │ │ ├── token_type.h │ │ ├── tokenizer.c │ │ ├── tokenizer.h │ │ ├── tokenizer_states.h │ │ ├── utf8.c │ │ ├── utf8.h │ │ ├── util.c │ │ ├── util.h │ │ ├── vector.c │ │ └── vector.h │ ├── tests │ │ ├── attribute.cc │ │ ├── char_ref.cc │ │ ├── parser.cc │ │ ├── string_buffer.cc │ │ ├── string_piece.cc │ │ ├── test_utils.cc │ │ ├── test_utils.h │ │ ├── tokenizer.cc │ │ ├── utf8.cc │ │ └── vector.cc │ └── visualc │ │ ├── gumbo.vcxproj │ │ ├── gumbo.vcxproj.filters │ │ └── include │ │ └── strings.h ├── harfbuzz │ ├── .ci │ │ ├── build-win32.sh │ │ ├── build-win64.sh │ │ ├── deploy-docs.sh │ │ ├── publish_release_artifact.sh │ │ ├── win32-cross-file.txt │ │ └── win64-cross-file.txt │ ├── .circleci │ │ └── config.yml │ ├── .clang-format │ ├── .codecov.yml │ ├── .editorconfig │ ├── .github │ │ ├── dependabot.yml │ │ └── workflows │ │ │ ├── arm-ci.yml │ │ │ ├── cifuzz.yml │ │ │ ├── configs-build.yml │ │ │ ├── coverity-scan.yml │ │ │ ├── linux-ci.yml │ │ │ ├── macos-ci.yml │ │ │ ├── msvc-ci.yml │ │ │ └── msys2-ci.yml │ ├── AUTHORS │ ├── BUILD.md │ ├── CMakeLists.txt │ ├── CONFIG.md │ ├── COPYING │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── README.md │ ├── README.mingw.md │ ├── README.python.md │ ├── RELEASING.md │ ├── TESTING.md │ ├── THANKS │ ├── autogen.sh │ ├── configure.ac │ ├── docs │ │ ├── HarfBuzz.png │ │ ├── HarfBuzz.svg │ │ ├── Makefile.am │ │ ├── features.dot │ │ ├── harfbuzz-docs.xml │ │ ├── harfbuzz-overrides.txt │ │ ├── harfbuzz-sections.txt │ │ ├── meson.build │ │ ├── repacker.md │ │ ├── serializer.md │ │ ├── subset-preprocessing.md │ │ ├── usermanual-buffers-language-script-and-direction.xml │ │ ├── usermanual-clusters.xml │ │ ├── usermanual-fonts-and-faces.xml │ │ ├── usermanual-getting-started.xml │ │ ├── usermanual-glyph-information.xml │ │ ├── usermanual-install-harfbuzz.xml │ │ ├── usermanual-integration.xml │ │ ├── usermanual-object-model.xml │ │ ├── usermanual-opentype-features.xml │ │ ├── usermanual-shaping-concepts.xml │ │ ├── usermanual-utilities.xml │ │ ├── usermanual-what-is-harfbuzz.xml │ │ └── version.xml.in │ ├── git.mk │ ├── harfbuzz.doap │ ├── m4 │ │ ├── ax_check_link_flag.m4 │ │ ├── ax_code_coverage.m4 │ │ ├── ax_cxx_compile_stdcxx.m4 │ │ └── ax_pthread.m4 │ ├── meson.build │ ├── meson_options.txt │ ├── mingw-configure.sh │ ├── perf │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── benchmark-font.cc │ │ ├── benchmark-map.cc │ │ ├── benchmark-ot.cc │ │ ├── benchmark-set.cc │ │ ├── benchmark-shape.cc │ │ ├── benchmark-subset.cc │ │ ├── fonts │ │ │ ├── Amiri-Regular.ttf │ │ │ ├── NotoNastaliqUrdu-Regular.ttf │ │ │ └── Roboto-Regular.ttf │ │ ├── meson.build │ │ └── texts │ │ │ ├── en-thelittleprince.txt │ │ │ ├── en-words.txt │ │ │ ├── fa-thelittleprince.txt │ │ │ ├── fa-words.txt │ │ │ └── hi-words.txt │ ├── replace-enum-strings.cmake │ ├── src │ │ ├── ArabicPUASimplified.txt │ │ ├── ArabicPUATraditional.txt │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── OT │ │ │ ├── Layout │ │ │ │ ├── Common │ │ │ │ │ ├── Coverage.hh │ │ │ │ │ ├── CoverageFormat1.hh │ │ │ │ │ ├── CoverageFormat2.hh │ │ │ │ │ └── RangeRecord.hh │ │ │ │ ├── GPOS │ │ │ │ │ ├── Anchor.hh │ │ │ │ │ ├── AnchorFormat1.hh │ │ │ │ │ ├── AnchorFormat2.hh │ │ │ │ │ ├── AnchorFormat3.hh │ │ │ │ │ ├── AnchorMatrix.hh │ │ │ │ │ ├── ChainContextPos.hh │ │ │ │ │ ├── Common.hh │ │ │ │ │ ├── ContextPos.hh │ │ │ │ │ ├── CursivePos.hh │ │ │ │ │ ├── CursivePosFormat1.hh │ │ │ │ │ ├── ExtensionPos.hh │ │ │ │ │ ├── GPOS.hh │ │ │ │ │ ├── LigatureArray.hh │ │ │ │ │ ├── MarkArray.hh │ │ │ │ │ ├── MarkBasePos.hh │ │ │ │ │ ├── MarkBasePosFormat1.hh │ │ │ │ │ ├── MarkLigPos.hh │ │ │ │ │ ├── MarkLigPosFormat1.hh │ │ │ │ │ ├── MarkMarkPos.hh │ │ │ │ │ ├── MarkMarkPosFormat1.hh │ │ │ │ │ ├── MarkRecord.hh │ │ │ │ │ ├── PairPos.hh │ │ │ │ │ ├── PairPosFormat1.hh │ │ │ │ │ ├── PairPosFormat2.hh │ │ │ │ │ ├── PairSet.hh │ │ │ │ │ ├── PairValueRecord.hh │ │ │ │ │ ├── PosLookup.hh │ │ │ │ │ ├── PosLookupSubTable.hh │ │ │ │ │ ├── SinglePos.hh │ │ │ │ │ ├── SinglePosFormat1.hh │ │ │ │ │ ├── SinglePosFormat2.hh │ │ │ │ │ └── ValueFormat.hh │ │ │ │ ├── GSUB │ │ │ │ │ ├── AlternateSet.hh │ │ │ │ │ ├── AlternateSubst.hh │ │ │ │ │ ├── AlternateSubstFormat1.hh │ │ │ │ │ ├── ChainContextSubst.hh │ │ │ │ │ ├── Common.hh │ │ │ │ │ ├── ContextSubst.hh │ │ │ │ │ ├── ExtensionSubst.hh │ │ │ │ │ ├── GSUB.hh │ │ │ │ │ ├── Ligature.hh │ │ │ │ │ ├── LigatureSet.hh │ │ │ │ │ ├── LigatureSubst.hh │ │ │ │ │ ├── LigatureSubstFormat1.hh │ │ │ │ │ ├── MultipleSubst.hh │ │ │ │ │ ├── MultipleSubstFormat1.hh │ │ │ │ │ ├── ReverseChainSingleSubst.hh │ │ │ │ │ ├── ReverseChainSingleSubstFormat1.hh │ │ │ │ │ ├── Sequence.hh │ │ │ │ │ ├── SingleSubst.hh │ │ │ │ │ ├── SingleSubstFormat1.hh │ │ │ │ │ ├── SingleSubstFormat2.hh │ │ │ │ │ ├── SubstLookup.hh │ │ │ │ │ └── SubstLookupSubTable.hh │ │ │ │ └── types.hh │ │ │ └── glyf │ │ │ │ ├── CompositeGlyph.hh │ │ │ │ ├── Glyph.hh │ │ │ │ ├── GlyphHeader.hh │ │ │ │ ├── SimpleGlyph.hh │ │ │ │ ├── SubsetGlyph.hh │ │ │ │ ├── VarCompositeGlyph.hh │ │ │ │ ├── composite-iter.hh │ │ │ │ ├── coord-setter.hh │ │ │ │ ├── glyf-helpers.hh │ │ │ │ ├── glyf.hh │ │ │ │ ├── loca.hh │ │ │ │ └── path-builder.hh │ │ ├── check-c-linkage-decls.py │ │ ├── check-externs.py │ │ ├── check-header-guards.py │ │ ├── check-includes.py │ │ ├── check-libstdc++.py │ │ ├── check-static-inits.py │ │ ├── check-symbols.py │ │ ├── failing-alloc.c │ │ ├── fix_get_types.py │ │ ├── gen-arabic-joining-list.py │ │ ├── gen-arabic-pua.py │ │ ├── gen-arabic-table.py │ │ ├── gen-def.py │ │ ├── gen-emoji-table.py │ │ ├── gen-harfbuzzcc.py │ │ ├── gen-hb-version.py │ │ ├── gen-indic-table.py │ │ ├── gen-os2-unicode-ranges.py │ │ ├── gen-ragel-artifacts.py │ │ ├── gen-tag-table.py │ │ ├── gen-ucd-table.py │ │ ├── gen-use-table.py │ │ ├── gen-vowel-constraints.py │ │ ├── graph │ │ │ ├── classdef-graph.hh │ │ │ ├── coverage-graph.hh │ │ │ ├── graph.hh │ │ │ ├── gsubgpos-context.cc │ │ │ ├── gsubgpos-context.hh │ │ │ ├── gsubgpos-graph.hh │ │ │ ├── markbasepos-graph.hh │ │ │ ├── pairpos-graph.hh │ │ │ ├── serialize.hh │ │ │ ├── split-helpers.hh │ │ │ └── test-classdef-graph.cc │ │ ├── harfbuzz-config.cmake.in │ │ ├── harfbuzz-gobject.pc.in │ │ ├── harfbuzz-icu.pc.in │ │ ├── harfbuzz-subset.cc │ │ ├── harfbuzz-subset.pc.in │ │ ├── harfbuzz.cc │ │ ├── harfbuzz.pc.in │ │ ├── hb-aat-layout-ankr-table.hh │ │ ├── hb-aat-layout-bsln-table.hh │ │ ├── hb-aat-layout-common.hh │ │ ├── hb-aat-layout-feat-table.hh │ │ ├── hb-aat-layout-just-table.hh │ │ ├── hb-aat-layout-kerx-table.hh │ │ ├── hb-aat-layout-morx-table.hh │ │ ├── hb-aat-layout-opbd-table.hh │ │ ├── hb-aat-layout-trak-table.hh │ │ ├── hb-aat-layout.cc │ │ ├── hb-aat-layout.h │ │ ├── hb-aat-layout.hh │ │ ├── hb-aat-ltag-table.hh │ │ ├── hb-aat-map.cc │ │ ├── hb-aat-map.hh │ │ ├── hb-aat.h │ │ ├── hb-algs.hh │ │ ├── hb-array.hh │ │ ├── hb-atomic.hh │ │ ├── hb-bimap.hh │ │ ├── hb-bit-page.hh │ │ ├── hb-bit-set-invertible.hh │ │ ├── hb-bit-set.hh │ │ ├── hb-blob.cc │ │ ├── hb-blob.h │ │ ├── hb-blob.hh │ │ ├── hb-buffer-deserialize-json.hh │ │ ├── hb-buffer-deserialize-json.rl │ │ ├── hb-buffer-deserialize-text.hh │ │ ├── hb-buffer-deserialize-text.rl │ │ ├── hb-buffer-serialize.cc │ │ ├── hb-buffer-verify.cc │ │ ├── hb-buffer.cc │ │ ├── hb-buffer.h │ │ ├── hb-buffer.hh │ │ ├── hb-cache.hh │ │ ├── hb-cff-interp-common.hh │ │ ├── hb-cff-interp-cs-common.hh │ │ ├── hb-cff-interp-dict-common.hh │ │ ├── hb-cff1-interp-cs.hh │ │ ├── hb-cff2-interp-cs.hh │ │ ├── hb-common.cc │ │ ├── hb-common.h │ │ ├── hb-config.hh │ │ ├── hb-coretext.cc │ │ ├── hb-coretext.h │ │ ├── hb-cplusplus.hh │ │ ├── hb-debug.hh │ │ ├── hb-deprecated.h │ │ ├── hb-directwrite.cc │ │ ├── hb-directwrite.h │ │ ├── hb-dispatch.hh │ │ ├── hb-draw.cc │ │ ├── hb-draw.h │ │ ├── hb-draw.hh │ │ ├── hb-face.cc │ │ ├── hb-face.h │ │ ├── hb-face.hh │ │ ├── hb-fallback-shape.cc │ │ ├── hb-features.h.in │ │ ├── hb-font.cc │ │ ├── hb-font.h │ │ ├── hb-font.hh │ │ ├── hb-ft.cc │ │ ├── hb-ft.h │ │ ├── hb-gdi.cc │ │ ├── hb-gdi.h │ │ ├── hb-glib.cc │ │ ├── hb-glib.h │ │ ├── hb-gobject-enums.cc.tmpl │ │ ├── hb-gobject-enums.h.tmpl │ │ ├── hb-gobject-structs.cc │ │ ├── hb-gobject-structs.h │ │ ├── hb-gobject.h │ │ ├── hb-graphite2.cc │ │ ├── hb-graphite2.h │ │ ├── hb-icu.cc │ │ ├── hb-icu.h │ │ ├── hb-iter.hh │ │ ├── hb-kern.hh │ │ ├── hb-machinery.hh │ │ ├── hb-map.cc │ │ ├── hb-map.h │ │ ├── hb-map.hh │ │ ├── hb-meta.hh │ │ ├── hb-ms-feature-ranges.hh │ │ ├── hb-multimap.hh │ │ ├── hb-mutex.hh │ │ ├── hb-null.hh │ │ ├── hb-number-parser.hh │ │ ├── hb-number-parser.rl │ │ ├── hb-number.cc │ │ ├── hb-number.hh │ │ ├── hb-object.hh │ │ ├── hb-open-file.hh │ │ ├── hb-open-type.hh │ │ ├── hb-ot-cff-common.hh │ │ ├── hb-ot-cff1-std-str.hh │ │ ├── hb-ot-cff1-table.cc │ │ ├── hb-ot-cff1-table.hh │ │ ├── hb-ot-cff2-table.cc │ │ ├── hb-ot-cff2-table.hh │ │ ├── hb-ot-cmap-table.hh │ │ ├── hb-ot-color-cbdt-table.hh │ │ ├── hb-ot-color-colr-table.hh │ │ ├── hb-ot-color-colrv1-closure.hh │ │ ├── hb-ot-color-cpal-table.hh │ │ ├── hb-ot-color-sbix-table.hh │ │ ├── hb-ot-color-svg-table.hh │ │ ├── hb-ot-color.cc │ │ ├── hb-ot-color.h │ │ ├── hb-ot-deprecated.h │ │ ├── hb-ot-face-table-list.hh │ │ ├── hb-ot-face.cc │ │ ├── hb-ot-face.hh │ │ ├── hb-ot-font.cc │ │ ├── hb-ot-font.h │ │ ├── hb-ot-gasp-table.hh │ │ ├── hb-ot-glyf-table.hh │ │ ├── hb-ot-hdmx-table.hh │ │ ├── hb-ot-head-table.hh │ │ ├── hb-ot-hhea-table.hh │ │ ├── hb-ot-hmtx-table.hh │ │ ├── hb-ot-kern-table.hh │ │ ├── hb-ot-layout-base-table.hh │ │ ├── hb-ot-layout-common.hh │ │ ├── hb-ot-layout-gdef-table.hh │ │ ├── hb-ot-layout-gpos-table.hh │ │ ├── hb-ot-layout-gsub-table.hh │ │ ├── hb-ot-layout-gsubgpos.hh │ │ ├── hb-ot-layout-jstf-table.hh │ │ ├── hb-ot-layout.cc │ │ ├── hb-ot-layout.h │ │ ├── hb-ot-layout.hh │ │ ├── hb-ot-map.cc │ │ ├── hb-ot-map.hh │ │ ├── hb-ot-math-table.hh │ │ ├── hb-ot-math.cc │ │ ├── hb-ot-math.h │ │ ├── hb-ot-maxp-table.hh │ │ ├── hb-ot-meta-table.hh │ │ ├── hb-ot-meta.cc │ │ ├── hb-ot-meta.h │ │ ├── hb-ot-metrics.cc │ │ ├── hb-ot-metrics.h │ │ ├── hb-ot-metrics.hh │ │ ├── hb-ot-name-language-static.hh │ │ ├── hb-ot-name-language.hh │ │ ├── hb-ot-name-table.hh │ │ ├── hb-ot-name.cc │ │ ├── hb-ot-name.h │ │ ├── hb-ot-os2-table.hh │ │ ├── hb-ot-os2-unicode-ranges.hh │ │ ├── hb-ot-post-macroman.hh │ │ ├── hb-ot-post-table-v2subset.hh │ │ ├── hb-ot-post-table.hh │ │ ├── hb-ot-shape-fallback.cc │ │ ├── hb-ot-shape-fallback.hh │ │ ├── hb-ot-shape-normalize.cc │ │ ├── hb-ot-shape-normalize.hh │ │ ├── hb-ot-shape.cc │ │ ├── hb-ot-shape.h │ │ ├── hb-ot-shape.hh │ │ ├── hb-ot-shaper-arabic-fallback.hh │ │ ├── hb-ot-shaper-arabic-joining-list.hh │ │ ├── hb-ot-shaper-arabic-pua.hh │ │ ├── hb-ot-shaper-arabic-table.hh │ │ ├── hb-ot-shaper-arabic-win1256.hh │ │ ├── hb-ot-shaper-arabic.cc │ │ ├── hb-ot-shaper-arabic.hh │ │ ├── hb-ot-shaper-default.cc │ │ ├── hb-ot-shaper-hangul.cc │ │ ├── hb-ot-shaper-hebrew.cc │ │ ├── hb-ot-shaper-indic-machine.hh │ │ ├── hb-ot-shaper-indic-machine.rl │ │ ├── hb-ot-shaper-indic-table.cc │ │ ├── hb-ot-shaper-indic.cc │ │ ├── hb-ot-shaper-indic.hh │ │ ├── hb-ot-shaper-khmer-machine.hh │ │ ├── hb-ot-shaper-khmer-machine.rl │ │ ├── hb-ot-shaper-khmer.cc │ │ ├── hb-ot-shaper-myanmar-machine.hh │ │ ├── hb-ot-shaper-myanmar-machine.rl │ │ ├── hb-ot-shaper-myanmar.cc │ │ ├── hb-ot-shaper-syllabic.cc │ │ ├── hb-ot-shaper-syllabic.hh │ │ ├── hb-ot-shaper-thai.cc │ │ ├── hb-ot-shaper-use-machine.hh │ │ ├── hb-ot-shaper-use-machine.rl │ │ ├── hb-ot-shaper-use-table.hh │ │ ├── hb-ot-shaper-use.cc │ │ ├── hb-ot-shaper-vowel-constraints.cc │ │ ├── hb-ot-shaper-vowel-constraints.hh │ │ ├── hb-ot-shaper.hh │ │ ├── hb-ot-stat-table.hh │ │ ├── hb-ot-tag-table.hh │ │ ├── hb-ot-tag.cc │ │ ├── hb-ot-var-avar-table.hh │ │ ├── hb-ot-var-common.hh │ │ ├── hb-ot-var-fvar-table.hh │ │ ├── hb-ot-var-gvar-table.hh │ │ ├── hb-ot-var-hvar-table.hh │ │ ├── hb-ot-var-mvar-table.hh │ │ ├── hb-ot-var.cc │ │ ├── hb-ot-var.h │ │ ├── hb-ot-vorg-table.hh │ │ ├── hb-ot.h │ │ ├── hb-pool.hh │ │ ├── hb-priority-queue.hh │ │ ├── hb-rename.h │ │ ├── hb-repacker.hh │ │ ├── hb-sanitize.hh │ │ ├── hb-serialize.hh │ │ ├── hb-set-digest.hh │ │ ├── hb-set.cc │ │ ├── hb-set.h │ │ ├── hb-set.hh │ │ ├── hb-shape-plan.cc │ │ ├── hb-shape-plan.h │ │ ├── hb-shape-plan.hh │ │ ├── hb-shape.cc │ │ ├── hb-shape.h │ │ ├── hb-shaper-impl.hh │ │ ├── hb-shaper-list.hh │ │ ├── hb-shaper.cc │ │ ├── hb-shaper.hh │ │ ├── hb-static.cc │ │ ├── hb-string-array.hh │ │ ├── hb-style.cc │ │ ├── hb-style.h │ │ ├── hb-subset-accelerator.hh │ │ ├── hb-subset-cff-common.cc │ │ ├── hb-subset-cff-common.hh │ │ ├── hb-subset-cff1.cc │ │ ├── hb-subset-cff1.hh │ │ ├── hb-subset-cff2.cc │ │ ├── hb-subset-cff2.hh │ │ ├── hb-subset-input.cc │ │ ├── hb-subset-input.hh │ │ ├── hb-subset-plan.cc │ │ ├── hb-subset-plan.hh │ │ ├── hb-subset-repacker.cc │ │ ├── hb-subset-repacker.h │ │ ├── hb-subset.cc │ │ ├── hb-subset.h │ │ ├── hb-subset.hh │ │ ├── hb-ucd-table.hh │ │ ├── hb-ucd.cc │ │ ├── hb-unicode-emoji-table.hh │ │ ├── hb-unicode.cc │ │ ├── hb-unicode.h │ │ ├── hb-unicode.hh │ │ ├── hb-uniscribe.cc │ │ ├── hb-uniscribe.h │ │ ├── hb-utf.hh │ │ ├── hb-vector.hh │ │ ├── hb-version.h │ │ ├── hb-version.h.in │ │ ├── hb.h │ │ ├── hb.hh │ │ ├── main.cc │ │ ├── meson.build │ │ ├── ms-use │ │ │ ├── COPYING │ │ │ ├── IndicPositionalCategory-Additional.txt │ │ │ ├── IndicShapingInvalidCluster.txt │ │ │ └── IndicSyllabicCategory-Additional.txt │ │ ├── sample.py │ │ ├── test-algs.cc │ │ ├── test-array.cc │ │ ├── test-bimap.cc │ │ ├── test-buffer-serialize.cc │ │ ├── test-gpos-size-params.cc │ │ ├── test-gsub-would-substitute.cc │ │ ├── test-iter.cc │ │ ├── test-machinery.cc │ │ ├── test-map.cc │ │ ├── test-multimap.cc │ │ ├── test-number.cc │ │ ├── test-ot-glyphname.cc │ │ ├── test-ot-meta.cc │ │ ├── test-ot-name.cc │ │ ├── test-priority-queue.cc │ │ ├── test-repacker.cc │ │ ├── test-serialize.cc │ │ ├── test-set.cc │ │ ├── test-unicode-ranges.cc │ │ ├── test-use-table.cc │ │ ├── test-vector.cc │ │ ├── test.cc │ │ └── update-unicode-tables.make │ └── util │ │ ├── Makefile.am │ │ ├── Makefile.sources │ │ ├── ansi-print.hh │ │ ├── batch.hh │ │ ├── face-options.hh │ │ ├── font-options.hh │ │ ├── hb-fc-list.c │ │ ├── hb-fc.cc │ │ ├── hb-fc.h │ │ ├── hb-ot-shape-closure.cc │ │ ├── hb-shape.cc │ │ ├── hb-subset.cc │ │ ├── hb-view.cc │ │ ├── helper-cairo-ansi.hh │ │ ├── helper-cairo-ft.hh │ │ ├── helper-cairo-user.hh │ │ ├── helper-cairo.hh │ │ ├── main-font-text.hh │ │ ├── meson.build │ │ ├── options.hh │ │ ├── output-options.hh │ │ ├── shape-consumer.hh │ │ ├── shape-format.hh │ │ ├── shape-options.hh │ │ ├── shape-output.hh │ │ ├── text-options.hh │ │ ├── view-cairo.hh │ │ └── view-options.hh ├── jbig2dec │ ├── .gitignore │ ├── CHANGES │ ├── COPYING │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.unix │ ├── README │ ├── annex-h.jbig2 │ ├── autogen.sh │ ├── config_win32.h │ ├── configure.ac.in │ ├── getopt.c │ ├── getopt.h │ ├── getopt1.c │ ├── jbig2.c │ ├── jbig2.h │ ├── jbig2_arith.c │ ├── jbig2_arith.h │ ├── jbig2_arith_iaid.c │ ├── jbig2_arith_iaid.h │ ├── jbig2_arith_int.c │ ├── jbig2_arith_int.h │ ├── jbig2_generic.c │ ├── jbig2_generic.h │ ├── jbig2_halftone.c │ ├── jbig2_halftone.h │ ├── jbig2_huffman.c │ ├── jbig2_huffman.h │ ├── jbig2_hufftab.c │ ├── jbig2_hufftab.h │ ├── jbig2_image.c │ ├── jbig2_image.h │ ├── jbig2_image_pbm.c │ ├── jbig2_image_png.c │ ├── jbig2_image_rw.h │ ├── jbig2_mmr.c │ ├── jbig2_mmr.h │ ├── jbig2_page.c │ ├── jbig2_page.h │ ├── jbig2_priv.h │ ├── jbig2_refinement.c │ ├── jbig2_refinement.h │ ├── jbig2_segment.c │ ├── jbig2_segment.h │ ├── jbig2_symbol_dict.c │ ├── jbig2_symbol_dict.h │ ├── jbig2_text.c │ ├── jbig2_text.h │ ├── jbig2dec.1 │ ├── jbig2dec.c │ ├── jbig2dec.pc.in │ ├── memcmp.c │ ├── memento.c │ ├── memento.h │ ├── msvc.mak │ ├── os_types.h │ ├── pbm2png.c │ ├── sha1.c │ ├── sha1.h │ └── test_jbig2dec.py ├── lcms2 │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── LICENSE │ ├── Lib │ │ ├── BC │ │ │ └── BC.txt │ │ └── MS │ │ │ └── MS.TXT │ ├── Makefile.am │ ├── Makefile.in │ ├── Projects │ │ ├── .gitignore │ │ ├── BorlandC_5.5 │ │ │ ├── lcms2mt.rc │ │ │ ├── lcmsdll.lk │ │ │ ├── lcmsdll.lst │ │ │ └── mklcmsdll.bat │ │ ├── Qt │ │ │ └── lcms2 │ │ │ │ └── lcms2.pro │ │ ├── VC2013 │ │ │ ├── jpegicc │ │ │ │ └── jpegicc.vcxproj │ │ │ ├── lcms2mt.rc │ │ │ ├── lcms2mt.sln │ │ │ ├── lcms2mt_DLL │ │ │ │ ├── lcms2mt_DLL.vcxproj │ │ │ │ └── lcms2mt_DLL.vcxproj.filters │ │ │ ├── lcms2mt_static │ │ │ │ ├── lcms2mt_static.vcxproj │ │ │ │ └── lcms2mt_static.vcxproj.filters │ │ │ ├── linkicc │ │ │ │ └── linkicc.vcxproj │ │ │ ├── psicc │ │ │ │ └── psicc.vcxproj │ │ │ ├── testbed │ │ │ │ └── testbed.vcxproj │ │ │ ├── tiffdiff │ │ │ │ └── tiffdiff.vcxproj │ │ │ ├── tifficc │ │ │ │ └── tifficc.vcxproj │ │ │ └── transicc │ │ │ │ └── transicc.vcxproj │ │ ├── VC2015 │ │ │ ├── jpegicc │ │ │ │ ├── jpegicc.vcxproj │ │ │ │ └── jpegicc.vcxproj.filters │ │ │ ├── lcms2mt.rc │ │ │ ├── lcms2mt.sln │ │ │ ├── lcms2mt_DLL │ │ │ │ ├── lcms2mt_DLL.vcxproj │ │ │ │ └── lcms2mt_DLL.vcxproj.filters │ │ │ ├── lcms2mt_static │ │ │ │ ├── lcms2mt_static.vcxproj │ │ │ │ └── lcms2mt_static.vcxproj.filters │ │ │ ├── linkicc │ │ │ │ ├── linkicc.vcxproj │ │ │ │ └── linkicc.vcxproj.filters │ │ │ ├── psicc │ │ │ │ ├── psicc.vcxproj │ │ │ │ └── psicc.vcxproj.filters │ │ │ ├── resource.h │ │ │ ├── testbed │ │ │ │ ├── testbed.vcxproj │ │ │ │ └── testbed.vcxproj.filters │ │ │ ├── tiffdiff │ │ │ │ ├── tiffdiff.vcxproj │ │ │ │ └── tiffdiff.vcxproj.filters │ │ │ ├── tifficc │ │ │ │ ├── tifficc.vcxproj │ │ │ │ └── tifficc.vcxproj.filters │ │ │ └── transicc │ │ │ │ ├── transicc.vcxproj │ │ │ │ └── transicc.vcxproj.filters │ │ ├── VC2017 │ │ │ ├── jpegicc │ │ │ │ ├── jpegicc.vcxproj │ │ │ │ └── jpegicc.vcxproj.filters │ │ │ ├── lcms2mt.rc │ │ │ ├── lcms2mt.sln │ │ │ ├── lcms2mt_DLL │ │ │ │ ├── lcms2mt_DLL.vcxproj │ │ │ │ └── lcms2mt_DLL.vcxproj.filters │ │ │ ├── lcms2mt_static │ │ │ │ ├── lcms2mt_static.vcxproj │ │ │ │ └── lcms2mt_static.vcxproj.filters │ │ │ ├── linkicc │ │ │ │ ├── linkicc.vcxproj │ │ │ │ └── linkicc.vcxproj.filters │ │ │ ├── psicc │ │ │ │ ├── psicc.vcxproj │ │ │ │ └── psicc.vcxproj.filters │ │ │ ├── resource.h │ │ │ ├── testbed │ │ │ │ ├── testbed.vcxproj │ │ │ │ └── testbed.vcxproj.filters │ │ │ ├── tiffdiff │ │ │ │ ├── tiffdiff.vcxproj │ │ │ │ └── tiffdiff.vcxproj.filters │ │ │ ├── tifficc │ │ │ │ ├── tifficc.vcxproj │ │ │ │ └── tifficc.vcxproj.filters │ │ │ └── transicc │ │ │ │ ├── transicc.vcxproj │ │ │ │ └── transicc.vcxproj.filters │ │ ├── VC2019 │ │ │ ├── jpegicc │ │ │ │ ├── jpegicc.vcxproj │ │ │ │ └── jpegicc.vcxproj.filters │ │ │ ├── lcms2mt.rc │ │ │ ├── lcms2mt.sln │ │ │ ├── lcms2mt_DLL │ │ │ │ ├── lcms2mt_DLL.vcxproj │ │ │ │ └── lcms2mt_DLL.vcxproj.filters │ │ │ ├── lcms2mt_static │ │ │ │ ├── lcms2mt_static.vcxproj │ │ │ │ └── lcms2mt_static.vcxproj.filters │ │ │ ├── linkicc │ │ │ │ ├── linkicc.vcxproj │ │ │ │ └── linkicc.vcxproj.filters │ │ │ ├── psicc │ │ │ │ ├── psicc.vcxproj │ │ │ │ └── psicc.vcxproj.filters │ │ │ ├── resource.h │ │ │ ├── testbed │ │ │ │ ├── testbed.vcxproj │ │ │ │ └── testbed.vcxproj.filters │ │ │ ├── tiffdiff │ │ │ │ ├── tiffdiff.vcxproj │ │ │ │ └── tiffdiff.vcxproj.filters │ │ │ ├── tifficc │ │ │ │ ├── tifficc.vcxproj │ │ │ │ └── tifficc.vcxproj.filters │ │ │ └── transicc │ │ │ │ ├── transicc.vcxproj │ │ │ │ └── transicc.vcxproj.filters │ │ ├── VC2022 │ │ │ ├── jpegicc │ │ │ │ ├── jpegicc.vcxproj │ │ │ │ └── jpegicc.vcxproj.filters │ │ │ ├── lcms2.rc │ │ │ ├── lcms2.sln │ │ │ ├── lcms2_DLL │ │ │ │ ├── lcms2_DLL.vcxproj │ │ │ │ └── lcms2_DLL.vcxproj.filters │ │ │ ├── lcms2_static │ │ │ │ ├── lcms2_static.vcxproj │ │ │ │ └── lcms2_static.vcxproj.filters │ │ │ ├── linkicc │ │ │ │ ├── linkicc.vcxproj │ │ │ │ └── linkicc.vcxproj.filters │ │ │ ├── psicc │ │ │ │ ├── psicc.vcxproj │ │ │ │ └── psicc.vcxproj.filters │ │ │ ├── resource.h │ │ │ ├── testbed │ │ │ │ ├── testbed.vcxproj │ │ │ │ └── testbed.vcxproj.filters │ │ │ ├── tiffdiff │ │ │ │ ├── tiffdiff.vcxproj │ │ │ │ └── tiffdiff.vcxproj.filters │ │ │ ├── tifficc │ │ │ │ ├── tifficc.vcxproj │ │ │ │ └── tifficc.vcxproj.filters │ │ │ └── transicc │ │ │ │ ├── transicc.vcxproj │ │ │ │ └── transicc.vcxproj.filters │ │ ├── Xcode_12 │ │ │ └── lcms2 │ │ │ │ └── lcms2.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── Xcode_14 │ │ │ └── lcms2 │ │ │ │ └── lcms2.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── cppcheck │ │ │ └── lcms2mt.cppcheck │ ├── README.1ST │ ├── README.md │ ├── SECURITY.md │ ├── aclocal.m4 │ ├── autogen.sh │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── doc │ │ └── WhyThisFork.txt │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── lcms2mt.h │ │ ├── lcms2mt_plugin.h │ │ └── meson.build │ ├── install-sh │ ├── lcms2mt.pc.in │ ├── ltmain.sh │ ├── m4 │ │ ├── acx_pthread.m4 │ │ ├── ax_append_compile_flags.m4 │ │ ├── ax_append_flag.m4 │ │ ├── ax_check_compile_flag.m4 │ │ ├── ax_gcc_func_attribute.m4 │ │ ├── ax_pthread.m4 │ │ ├── ax_require_defined.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── meson.build │ ├── meson_options.txt │ ├── missing │ ├── plugins │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.1ST │ │ ├── fast_float │ │ │ ├── COPYING.GPL3 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Projects │ │ │ │ ├── VC2019 │ │ │ │ │ ├── lcms2mt_fast_float_plugin.vcxproj │ │ │ │ │ ├── lcms2mt_fast_float_plugin.vcxproj.filters │ │ │ │ │ ├── lcms2mt_fast_float_plugin_testbed.vcxproj │ │ │ │ │ └── lcms2mt_fast_float_plugin_testbed.vcxproj.filters │ │ │ │ └── VC2022 │ │ │ │ │ ├── lcms2_fast_float_plugin.vcxproj │ │ │ │ │ ├── lcms2_fast_float_plugin.vcxproj.filters │ │ │ │ │ ├── lcms2_fast_float_plugin_testbed.vcxproj │ │ │ │ │ └── lcms2_fast_float_plugin_testbed.vcxproj.filters │ │ │ ├── doc │ │ │ │ ├── LittleCMS floating point extensions 1.4.pdf │ │ │ │ └── LittleCMS floating point extensions 1.5.pdf │ │ │ ├── include │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── lcms2mt_fast_float.h │ │ │ │ └── meson.build │ │ │ ├── meson.build │ │ │ ├── src │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── fast_16_tethra.c │ │ │ │ ├── fast_8_curves.c │ │ │ │ ├── fast_8_matsh.c │ │ │ │ ├── fast_8_matsh_sse.c │ │ │ │ ├── fast_8_tethra.c │ │ │ │ ├── fast_float_15bits.c │ │ │ │ ├── fast_float_15mats.c │ │ │ │ ├── fast_float_cmyk.c │ │ │ │ ├── fast_float_curves.c │ │ │ │ ├── fast_float_internal.h │ │ │ │ ├── fast_float_lab.c │ │ │ │ ├── fast_float_matsh.c │ │ │ │ ├── fast_float_separate.c │ │ │ │ ├── fast_float_sup.c │ │ │ │ ├── fast_float_tethra.c │ │ │ │ ├── lcms2_fast_float.rc.in │ │ │ │ └── meson.build │ │ │ └── testbed │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── demo_cmyk.c │ │ │ │ ├── fast_float_testbed.c │ │ │ │ ├── meson.build │ │ │ │ ├── test0.icc │ │ │ │ ├── test1.icc │ │ │ │ ├── test2.icc │ │ │ │ ├── test3.icc │ │ │ │ └── test5.icc │ │ ├── meson.build │ │ ├── test_profiles │ │ │ ├── meson.build │ │ │ ├── test0.icc │ │ │ ├── test1.icc │ │ │ ├── test2.icc │ │ │ ├── test3.icc │ │ │ └── test5.icc │ │ └── threaded │ │ │ ├── COPYING.GPL3 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Projects │ │ │ └── VC2022 │ │ │ │ ├── lcms2_threaded_plugin.vcxproj │ │ │ │ ├── lcms2_threaded_plugin.vcxproj.filters │ │ │ │ ├── lcms2_threaded_plugin_testbed.vcxproj │ │ │ │ └── lcms2_threaded_plugin_testbed.vcxproj.filters │ │ │ ├── doc │ │ │ └── LittleCMS threaded extensions 1.0.pdf │ │ │ ├── include │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── lcms2_threaded.h │ │ │ └── meson.build │ │ │ ├── meson.build │ │ │ ├── src │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── lcms2_threaded.rc.in │ │ │ ├── meson.build │ │ │ ├── threaded_core.c │ │ │ ├── threaded_internal.h │ │ │ ├── threaded_main.c │ │ │ ├── threaded_scheduler.c │ │ │ └── threaded_split.c │ │ │ └── testbed │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── meson.build │ │ │ ├── test0.icc │ │ │ ├── test1.icc │ │ │ ├── test2.icc │ │ │ ├── test3.icc │ │ │ ├── test5.icc │ │ │ └── threaded_testbed.c │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── cmsalpha.c │ │ ├── cmscam02.c │ │ ├── cmscgats.c │ │ ├── cmscnvrt.c │ │ ├── cmserr.c │ │ ├── cmsgamma.c │ │ ├── cmsgmt.c │ │ ├── cmshalf.c │ │ ├── cmsintrp.c │ │ ├── cmsio0.c │ │ ├── cmsio1.c │ │ ├── cmslut.c │ │ ├── cmsmd5.c │ │ ├── cmsmtrx.c │ │ ├── cmsnamed.c │ │ ├── cmsopt.c │ │ ├── cmspack.c │ │ ├── cmspcs.c │ │ ├── cmsplugin.c │ │ ├── cmsps2.c │ │ ├── cmssamp.c │ │ ├── cmssm.c │ │ ├── cmstypes.c │ │ ├── cmsvirt.c │ │ ├── cmswtpnt.c │ │ ├── cmsxform.c │ │ ├── extra_xform.h │ │ ├── lcms2.rc.in │ │ ├── lcms2_internal.h │ │ ├── lcms2mt.def │ │ └── meson.build │ ├── testbed │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── TestCLT.icc │ │ ├── alpha_test.c │ │ ├── bad.icc │ │ ├── bad_mpe.icc │ │ ├── crayons.icc │ │ ├── ibm-t61.icc │ │ ├── meson.build │ │ ├── new.icc │ │ ├── test1.icc │ │ ├── test2.icc │ │ ├── test3.icc │ │ ├── test4.icc │ │ ├── test5.icc │ │ ├── testbed.exp │ │ ├── testcms2.c │ │ ├── testcms2.h │ │ ├── testplugin.c │ │ ├── testthread.cpp │ │ ├── toosmall.icc │ │ └── zoo_icc.c │ └── utils │ │ ├── common │ │ ├── meson.build │ │ ├── utils.h │ │ ├── vprf.c │ │ └── xgetopt.c │ │ ├── delphi │ │ ├── delphidemo.dpr │ │ ├── delphidemo.dproj │ │ ├── delphidemo.res │ │ ├── demo1.dfm │ │ ├── demo1.pas │ │ └── lcms2dll.pas │ │ ├── jpgicc │ │ ├── LICENSE_iccjpeg │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── iccjpeg.c │ │ ├── iccjpeg.h │ │ ├── jpgicc.1 │ │ ├── jpgicc.c │ │ └── meson.build │ │ ├── linkicc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── linkicc.1 │ │ ├── linkicc.c │ │ └── meson.build │ │ ├── matlab │ │ ├── howto.txt │ │ ├── icctrans.c │ │ └── lcms_rsp │ │ ├── meson.build │ │ ├── psicc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── meson.build │ │ ├── psicc.1 │ │ └── psicc.c │ │ ├── samples │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── itufax.c │ │ ├── meson.build │ │ ├── mkcmy.c │ │ ├── mkgrayer.c │ │ ├── mktiff8.c │ │ ├── roundtrip.c │ │ ├── vericc.c │ │ ├── wtpt.1 │ │ └── wtpt.c │ │ ├── tificc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── meson.build │ │ ├── tifdiff.c │ │ ├── tificc.1 │ │ └── tificc.c │ │ └── transicc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── meson.build │ │ ├── transicc.1 │ │ └── transicc.c ├── libdjvu │ ├── Arrays.cpp │ ├── Arrays.h │ ├── BSByteStream.cpp │ ├── BSByteStream.h │ ├── BSEncodeByteStream.cpp │ ├── ByteStream.cpp │ ├── ByteStream.h │ ├── COPYRIGHT │ ├── DataPool.cpp │ ├── DataPool.h │ ├── DjVmDir.cpp │ ├── DjVmDir.h │ ├── DjVmDir0.cpp │ ├── DjVmDir0.h │ ├── DjVmDoc.cpp │ ├── DjVmDoc.h │ ├── DjVmNav.cpp │ ├── DjVmNav.h │ ├── DjVuAnno.cpp │ ├── DjVuAnno.h │ ├── DjVuDocEditor.cpp │ ├── DjVuDocEditor.h │ ├── DjVuDocument.cpp │ ├── DjVuDocument.h │ ├── DjVuDumpHelper.cpp │ ├── DjVuDumpHelper.h │ ├── DjVuErrorList.cpp │ ├── DjVuErrorList.h │ ├── DjVuFile.cpp │ ├── DjVuFile.h │ ├── DjVuFileCache.cpp │ ├── DjVuFileCache.h │ ├── DjVuGlobal.cpp │ ├── DjVuGlobal.h │ ├── DjVuGlobalMemory.cpp │ ├── DjVuImage.cpp │ ├── DjVuImage.h │ ├── DjVuInfo.cpp │ ├── DjVuInfo.h │ ├── DjVuMessage.cpp │ ├── DjVuMessage.h │ ├── DjVuMessageLite.cpp │ ├── DjVuMessageLite.h │ ├── DjVuNavDir.cpp │ ├── DjVuNavDir.h │ ├── DjVuPalette.cpp │ ├── DjVuPalette.h │ ├── DjVuPort.cpp │ ├── DjVuPort.h │ ├── DjVuText.cpp │ ├── DjVuText.h │ ├── DjVuToPS.cpp │ ├── DjVuToPS.h │ ├── GBitmap.cpp │ ├── GBitmap.h │ ├── GContainer.cpp │ ├── GContainer.h │ ├── GException.cpp │ ├── GException.h │ ├── GIFFManager.cpp │ ├── GIFFManager.h │ ├── GMapAreas.cpp │ ├── GMapAreas.h │ ├── GOS.cpp │ ├── GOS.h │ ├── GPixmap.cpp │ ├── GPixmap.h │ ├── GRect.cpp │ ├── GRect.h │ ├── GScaler.cpp │ ├── GScaler.h │ ├── GSmartPointer.cpp │ ├── GSmartPointer.h │ ├── GString.cpp │ ├── GString.h │ ├── GThreads.cpp │ ├── GThreads.h │ ├── GURL.cpp │ ├── GURL.h │ ├── GUnicode.cpp │ ├── IFFByteStream.cpp │ ├── IFFByteStream.h │ ├── IW44EncodeCodec.cpp │ ├── IW44Image.cpp │ ├── IW44Image.h │ ├── JB2EncodeCodec.cpp │ ├── JB2Image.cpp │ ├── JB2Image.h │ ├── JPEGDecoder.cpp │ ├── JPEGDecoder.h │ ├── MMRDecoder.cpp │ ├── MMRDecoder.h │ ├── MMX.cpp │ ├── MMX.h │ ├── Makefile.am │ ├── Template.h │ ├── UnicodeByteStream.cpp │ ├── UnicodeByteStream.h │ ├── XMLParser.cpp │ ├── XMLParser.h │ ├── XMLTags.cpp │ ├── XMLTags.h │ ├── ZPCodec.cpp │ ├── ZPCodec.h │ ├── atomic.cpp │ ├── atomic.h │ ├── ddjvuapi.cpp │ ├── ddjvuapi.h │ ├── ddjvuapi.pc.in │ ├── debug.cpp │ ├── debug.h │ ├── djvu_all.cpp │ ├── miniexp.cpp │ └── miniexp.h ├── libheif │ ├── .clang-tidy │ ├── .github │ │ ├── dependabot.yml │ │ └── workflows │ │ │ ├── build.yml │ │ │ ├── cifuzz.yml │ │ │ ├── clang.yml │ │ │ ├── coverity.yml │ │ │ ├── diagram.yml │ │ │ ├── emscripten.yml │ │ │ ├── fuzzer.yml │ │ │ ├── go.yml │ │ │ ├── lint.yml │ │ │ ├── mingw.yml │ │ │ ├── osx.yml │ │ │ └── test.yml │ ├── .gitignore │ ├── CMakeLists.txt │ ├── COPYING │ ├── CPPLINT.cfg │ ├── Makefile.am │ ├── README.md │ ├── appveyor.yml │ ├── autogen.sh │ ├── build-emscripten.sh │ ├── cmake │ │ └── modules │ │ │ ├── FindDav1d.cmake │ │ │ ├── FindLibAOM.cmake │ │ │ ├── FindLibde265.cmake │ │ │ ├── FindRav1e.cmake │ │ │ ├── FindX265.cmake │ │ │ └── LibFindMacros.cmake │ ├── configure.ac │ ├── diagram.svg │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Makefile.am │ │ ├── demo.html │ │ ├── encoder.cc │ │ ├── encoder.h │ │ ├── encoder_jpeg.cc │ │ ├── encoder_jpeg.h │ │ ├── encoder_png.cc │ │ ├── encoder_png.h │ │ ├── encoder_y4m.cc │ │ ├── encoder_y4m.h │ │ ├── example.avif │ │ ├── example.heic │ │ ├── heif-convert.1 │ │ ├── heif-enc.1 │ │ ├── heif-info.1 │ │ ├── heif-test.go │ │ ├── heif-thumbnailer.1 │ │ ├── heif_convert.cc │ │ ├── heif_enc.cc │ │ ├── heif_info.cc │ │ ├── heif_test.cc │ │ ├── heif_thumbnailer.cc │ │ └── test_c_api.c │ ├── extra │ │ ├── Makefile.am │ │ ├── getopt.c │ │ ├── getopt.h │ │ └── getopt_long.c │ ├── fuzzing │ │ ├── Makefile.am │ │ ├── corpus │ │ │ ├── clap-overflow-divide-zero.heic │ │ │ ├── clusterfuzz-testcase-minimized-color-conversion-fuzzer-6275694804467712 │ │ │ ├── clusterfuzz-testcase-minimized-file-fuzzer-4616081830051840.heic │ │ │ ├── clusterfuzz-testcase-minimized-file-fuzzer-5120279175102464.heic │ │ │ ├── clusterfuzz-testcase-minimized-file-fuzzer-5643900194127872.heic │ │ │ ├── clusterfuzz-testcase-minimized-file-fuzzer-5651556035198976.heic │ │ │ ├── clusterfuzz-testcase-minimized-file-fuzzer-5662360964956160.heic │ │ │ ├── clusterfuzz-testcase-minimized-file-fuzzer-5671864958976000.heic │ │ │ ├── clusterfuzz-testcase-minimized-file-fuzzer-5686319331672064.heic │ │ │ ├── clusterfuzz-testcase-minimized-file-fuzzer-5718632116518912.heic │ │ │ ├── clusterfuzz-testcase-minimized-file-fuzzer-5720856641142784.heic │ │ │ ├── clusterfuzz-testcase-minimized-file-fuzzer-5724458239655936.heic │ │ │ ├── clusterfuzz-testcase-minimized-file-fuzzer-5732616832024576.heic │ │ │ ├── clusterfuzz-testcase-minimized-file-fuzzer-5752063708495872.heic │ │ │ ├── clusterfuzz-testcase-minimized-file-fuzzer-5757633845264384.heic │ │ │ ├── clusterfuzz-testcase-minimized-file-fuzzer-6045213633282048.heic │ │ │ ├── colors-no-alpha-thumbnail.heic │ │ │ ├── colors-no-alpha.heic │ │ │ ├── colors-with-alpha-thumbnail.heic │ │ │ ├── colors-with-alpha.heic │ │ │ ├── github_138.heic │ │ │ ├── github_15.heic │ │ │ ├── github_20.heic │ │ │ ├── github_367_1.heic │ │ │ ├── github_367_2.heic │ │ │ ├── github_44.heic │ │ │ ├── github_45.heic │ │ │ ├── github_46_1.heic │ │ │ ├── github_46_2.heic │ │ │ ├── github_47.heic │ │ │ ├── github_48.heic │ │ │ ├── github_49.heic │ │ │ ├── github_50.heic │ │ │ ├── hbo_heif_context.h_126_1.heic │ │ │ └── uaf_heif_context.h_117_1.heic │ │ └── dictionary.txt │ ├── gdk-pixbuf │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── pixbufloader-heif.c │ ├── gnome │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── avif.xml │ │ ├── heif.thumbnailer │ │ └── heif.xml │ ├── go │ │ ├── Makefile.am │ │ └── heif │ │ │ ├── heif.go │ │ │ ├── heif_test.go │ │ │ ├── keepalive_16.go │ │ │ └── keepalive_17.go │ ├── libheif.pc.in │ ├── libheif │ │ ├── CMakeLists.txt │ │ ├── CPPLINT.cfg │ │ ├── Makefile.am │ │ ├── bitstream.cc │ │ ├── bitstream.h │ │ ├── box.cc │ │ ├── box.h │ │ ├── box_fuzzer.cc │ │ ├── color_conversion_fuzzer.cc │ │ ├── encoder_fuzzer.cc │ │ ├── error.cc │ │ ├── error.h │ │ ├── file_fuzzer.cc │ │ ├── heif.cc │ │ ├── heif.h │ │ ├── heif_api_structs.h │ │ ├── heif_avif.cc │ │ ├── heif_avif.h │ │ ├── heif_colorconversion.cc │ │ ├── heif_colorconversion.h │ │ ├── heif_context.cc │ │ ├── heif_context.h │ │ ├── heif_cxx.h │ │ ├── heif_decoder_aom.cc │ │ ├── heif_decoder_aom.h │ │ ├── heif_decoder_dav1d.cc │ │ ├── heif_decoder_dav1d.h │ │ ├── heif_decoder_libde265.cc │ │ ├── heif_decoder_libde265.h │ │ ├── heif_emscripten.h │ │ ├── heif_encoder_aom.cc │ │ ├── heif_encoder_aom.h │ │ ├── heif_encoder_rav1e.cc │ │ ├── heif_encoder_rav1e.h │ │ ├── heif_encoder_x265.cc │ │ ├── heif_encoder_x265.h │ │ ├── heif_file.cc │ │ ├── heif_file.h │ │ ├── heif_hevc.cc │ │ ├── heif_hevc.h │ │ ├── heif_image.cc │ │ ├── heif_image.h │ │ ├── heif_limits.h │ │ ├── heif_plugin.cc │ │ ├── heif_plugin.h │ │ ├── heif_plugin_registry.cc │ │ ├── heif_plugin_registry.h │ │ ├── heif_version.h │ │ ├── heif_version.h.in │ │ ├── logging.h │ │ ├── nclx.cc │ │ └── nclx.h │ ├── m4 │ │ ├── ac_c_cxx_compile_flags.m4 │ │ ├── ax_cxx_compile_stdcxx_11.m4 │ │ └── visibility.m4 │ ├── post.js │ ├── pre.js │ ├── scripts │ │ ├── Makefile.am │ │ ├── check-emscripten-enums.sh │ │ ├── check-go-enums.sh │ │ ├── check-gofmt.sh │ │ ├── check-licenses.sh │ │ ├── configure-fuzzer.sh │ │ ├── cpplint.py │ │ ├── install-ci-linux.sh │ │ ├── install-ci-osx.sh │ │ ├── install-clang.sh │ │ ├── install-emscripten.sh │ │ ├── pre-commit.hook │ │ ├── prepare-ci.sh │ │ ├── run-ci.sh │ │ └── test-javascript.js │ ├── tests │ │ ├── Makefile.am │ │ ├── catch.hpp │ │ ├── conversion.cc │ │ ├── encode.cc │ │ ├── main.cc │ │ └── test-race.go │ └── third-party │ │ ├── dav1d.cmd │ │ └── rav1e.cmd ├── libjpeg-turbo │ ├── BUILDING.txt │ ├── CMakeLists.txt │ ├── ChangeLog.txt │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── README-turbo.txt │ ├── acinclude.m4 │ ├── aclocal.m4 │ ├── bmp.c │ ├── bmp.h │ ├── cderror.h │ ├── cdjpeg.c │ ├── cdjpeg.h │ ├── change.log │ ├── cjpeg.1 │ ├── cjpeg.c │ ├── coderules.txt │ ├── compile │ ├── config.guess │ ├── config.h │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── djpeg.1 │ ├── djpeg.c │ ├── doxygen.config │ ├── example.c │ ├── install-sh │ ├── jaricom.c │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jcarith.c │ ├── jccoefct.c │ ├── jccolext.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jchuff.h │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.h │ ├── jconfig.h.in │ ├── jconfig.txt │ ├── jcparam.c │ ├── jcphuff.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jcstest.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdarith.c │ ├── jdatadst-tj.c │ ├── jdatadst.c │ ├── jdatasrc-tj.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcolext.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdhuff.h │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdmrgext.c │ ├── jdphuff.c │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jidctred.c │ ├── jinclude.h │ ├── jmemmgr.c │ ├── jmemnobs.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegcomp.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jpegtran.1 │ ├── jpegtran.c │ ├── jquant1.c │ ├── jquant2.c │ ├── jsimd.h │ ├── jsimd_none.c │ ├── jsimddct.h │ ├── jutils.c │ ├── jversion.h │ ├── libjpeg.map.in │ ├── libjpeg.txt │ ├── ltmain.sh │ ├── missing │ ├── rdbmp.c │ ├── rdcolmap.c │ ├── rdgif.c │ ├── rdjpgcom.1 │ ├── rdjpgcom.c │ ├── rdppm.c │ ├── rdrle.c │ ├── rdswitch.c │ ├── rdtarga.c │ ├── simd │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── jcclrmmx.asm │ │ ├── jcclrss2-64.asm │ │ ├── jcclrss2.asm │ │ ├── jccolmmx.asm │ │ ├── jccolss2-64.asm │ │ ├── jccolss2.asm │ │ ├── jcgrammx.asm │ │ ├── jcgrass2-64.asm │ │ ├── jcgrass2.asm │ │ ├── jcgrymmx.asm │ │ ├── jcgryss2-64.asm │ │ ├── jcgryss2.asm │ │ ├── jcolsamp.inc │ │ ├── jcqnt3dn.asm │ │ ├── jcqntmmx.asm │ │ ├── jcqnts2f-64.asm │ │ ├── jcqnts2f.asm │ │ ├── jcqnts2i-64.asm │ │ ├── jcqnts2i.asm │ │ ├── jcqntsse.asm │ │ ├── jcsammmx.asm │ │ ├── jcsamss2-64.asm │ │ ├── jcsamss2.asm │ │ ├── jdclrmmx.asm │ │ ├── jdclrss2-64.asm │ │ ├── jdclrss2.asm │ │ ├── jdcolmmx.asm │ │ ├── jdcolss2-64.asm │ │ ├── jdcolss2.asm │ │ ├── jdct.inc │ │ ├── jdmermmx.asm │ │ ├── jdmerss2-64.asm │ │ ├── jdmerss2.asm │ │ ├── jdmrgmmx.asm │ │ ├── jdmrgss2-64.asm │ │ ├── jdmrgss2.asm │ │ ├── jdsammmx.asm │ │ ├── jdsamss2-64.asm │ │ ├── jdsamss2.asm │ │ ├── jf3dnflt.asm │ │ ├── jfmmxfst.asm │ │ ├── jfmmxint.asm │ │ ├── jfss2fst-64.asm │ │ ├── jfss2fst.asm │ │ ├── jfss2int-64.asm │ │ ├── jfss2int.asm │ │ ├── jfsseflt-64.asm │ │ ├── jfsseflt.asm │ │ ├── ji3dnflt.asm │ │ ├── jimmxfst.asm │ │ ├── jimmxint.asm │ │ ├── jimmxred.asm │ │ ├── jiss2flt-64.asm │ │ ├── jiss2flt.asm │ │ ├── jiss2fst-64.asm │ │ ├── jiss2fst.asm │ │ ├── jiss2int-64.asm │ │ ├── jiss2int.asm │ │ ├── jiss2red-64.asm │ │ ├── jiss2red.asm │ │ ├── jisseflt.asm │ │ ├── jsimd.h │ │ ├── jsimd_arm.c │ │ ├── jsimd_arm_neon.S │ │ ├── jsimd_i386.c │ │ ├── jsimd_x86_64.c │ │ ├── jsimdcfg.inc.h │ │ ├── jsimdcpu.asm │ │ ├── jsimdext.inc │ │ └── nasm_lt.sh │ ├── structure.txt │ ├── tjbench.c │ ├── tjbenchtest.in │ ├── tjbenchtest.java.in │ ├── tjexampletest.in │ ├── tjunittest.c │ ├── tjutil.c │ ├── tjutil.h │ ├── transupp.c │ ├── transupp.h │ ├── turbojpeg-jni.c │ ├── turbojpeg-mapfile │ ├── turbojpeg-mapfile.jni │ ├── turbojpeg.c │ ├── turbojpeg.h │ ├── usage.txt │ ├── win │ │ ├── config.h.in │ │ ├── jconfig.h.in │ │ ├── jpeg62-memsrcdst.def │ │ ├── jpeg62.def │ │ ├── jpeg7-memsrcdst.def │ │ ├── jpeg7.def │ │ ├── jpeg8.def │ │ └── jsimdcfg.inc │ ├── wizard.txt │ ├── wrbmp.c │ ├── wrgif.c │ ├── wrjpgcom.1 │ ├── wrjpgcom.c │ ├── wrppm.c │ ├── wrrle.c │ └── wrtarga.c ├── libwebp │ ├── .cmake-format.py │ ├── .pylintrc │ ├── .style.yapf │ ├── AUTHORS │ ├── Android.mk │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── COPYING │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.vc │ ├── NEWS │ ├── PATENTS │ ├── PRESUBMIT.py │ ├── README.md │ ├── autogen.sh │ ├── build.gradle │ ├── cmake │ │ ├── WebPConfig.cmake.in │ │ ├── config.h.in │ │ ├── cpu.cmake │ │ └── deps.cmake │ ├── codereview.settings │ ├── configure.ac │ ├── doc │ │ ├── TODO │ │ ├── api.md │ │ ├── building.md │ │ ├── specs_generation.md │ │ ├── template.html │ │ ├── tools.md │ │ ├── webp-container-spec.txt │ │ └── webp-lossless-bitstream-spec.txt │ ├── examples │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── anim_diff.c │ │ ├── anim_dump.c │ │ ├── anim_util.c │ │ ├── anim_util.h │ │ ├── cwebp.c │ │ ├── dwebp.c │ │ ├── example_util.c │ │ ├── example_util.h │ │ ├── gif2webp.c │ │ ├── gifdec.c │ │ ├── gifdec.h │ │ ├── img2webp.c │ │ ├── stopwatch.h │ │ ├── test.webp │ │ ├── test_ref.ppm │ │ ├── unicode.h │ │ ├── unicode_gif.h │ │ ├── vwebp.c │ │ ├── webpinfo.c │ │ └── webpmux.c │ ├── extras │ │ ├── Makefile.am │ │ ├── extras.c │ │ ├── extras.h │ │ ├── get_disto.c │ │ ├── quality_estimate.c │ │ ├── sharpyuv_risk_table.c │ │ ├── sharpyuv_risk_table.h │ │ ├── vwebp_sdl.c │ │ ├── webp_quality.c │ │ ├── webp_to_sdl.c │ │ └── webp_to_sdl.h │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── imageio │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── image_dec.c │ │ ├── image_dec.h │ │ ├── image_enc.c │ │ ├── image_enc.h │ │ ├── imageio_util.c │ │ ├── imageio_util.h │ │ ├── jpegdec.c │ │ ├── jpegdec.h │ │ ├── metadata.c │ │ ├── metadata.h │ │ ├── pngdec.c │ │ ├── pngdec.h │ │ ├── pnmdec.c │ │ ├── pnmdec.h │ │ ├── tiffdec.c │ │ ├── tiffdec.h │ │ ├── webpdec.c │ │ ├── webpdec.h │ │ ├── wicdec.c │ │ └── wicdec.h │ ├── infra │ │ ├── common.sh │ │ ├── compile.sh │ │ ├── compile_android.sh │ │ ├── compile_js.sh │ │ └── run_static_analysis.sh │ ├── iosbuild.sh │ ├── m4 │ │ └── ax_pthread.m4 │ ├── makefile.unix │ ├── man │ │ ├── Makefile.am │ │ ├── cwebp.1 │ │ ├── dwebp.1 │ │ ├── gif2webp.1 │ │ ├── img2webp.1 │ │ ├── vwebp.1 │ │ ├── webpinfo.1 │ │ └── webpmux.1 │ ├── sharpyuv │ │ ├── Makefile.am │ │ ├── libsharpyuv.pc.in │ │ ├── libsharpyuv.rc │ │ ├── sharpyuv.c │ │ ├── sharpyuv.h │ │ ├── sharpyuv_cpu.c │ │ ├── sharpyuv_cpu.h │ │ ├── sharpyuv_csp.c │ │ ├── sharpyuv_csp.h │ │ ├── sharpyuv_dsp.c │ │ ├── sharpyuv_dsp.h │ │ ├── sharpyuv_gamma.c │ │ ├── sharpyuv_gamma.h │ │ ├── sharpyuv_neon.c │ │ └── sharpyuv_sse2.c │ ├── src │ │ ├── Makefile.am │ │ ├── dec │ │ │ ├── Makefile.am │ │ │ ├── alpha_dec.c │ │ │ ├── alphai_dec.h │ │ │ ├── buffer_dec.c │ │ │ ├── common_dec.h │ │ │ ├── frame_dec.c │ │ │ ├── idec_dec.c │ │ │ ├── io_dec.c │ │ │ ├── quant_dec.c │ │ │ ├── tree_dec.c │ │ │ ├── vp8_dec.c │ │ │ ├── vp8_dec.h │ │ │ ├── vp8i_dec.h │ │ │ ├── vp8l_dec.c │ │ │ ├── vp8li_dec.h │ │ │ ├── webp_dec.c │ │ │ └── webpi_dec.h │ │ ├── demux │ │ │ ├── Makefile.am │ │ │ ├── anim_decode.c │ │ │ ├── demux.c │ │ │ ├── libwebpdemux.pc.in │ │ │ └── libwebpdemux.rc │ │ ├── dsp │ │ │ ├── Makefile.am │ │ │ ├── alpha_processing.c │ │ │ ├── alpha_processing_mips_dsp_r2.c │ │ │ ├── alpha_processing_neon.c │ │ │ ├── alpha_processing_sse2.c │ │ │ ├── alpha_processing_sse41.c │ │ │ ├── common_sse2.h │ │ │ ├── common_sse41.h │ │ │ ├── cost.c │ │ │ ├── cost_mips32.c │ │ │ ├── cost_mips_dsp_r2.c │ │ │ ├── cost_neon.c │ │ │ ├── cost_sse2.c │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── dec.c │ │ │ ├── dec_clip_tables.c │ │ │ ├── dec_mips32.c │ │ │ ├── dec_mips_dsp_r2.c │ │ │ ├── dec_msa.c │ │ │ ├── dec_neon.c │ │ │ ├── dec_sse2.c │ │ │ ├── dec_sse41.c │ │ │ ├── dsp.h │ │ │ ├── enc.c │ │ │ ├── enc_mips32.c │ │ │ ├── enc_mips_dsp_r2.c │ │ │ ├── enc_msa.c │ │ │ ├── enc_neon.c │ │ │ ├── enc_sse2.c │ │ │ ├── enc_sse41.c │ │ │ ├── filters.c │ │ │ ├── filters_mips_dsp_r2.c │ │ │ ├── filters_msa.c │ │ │ ├── filters_neon.c │ │ │ ├── filters_sse2.c │ │ │ ├── lossless.c │ │ │ ├── lossless.h │ │ │ ├── lossless_common.h │ │ │ ├── lossless_enc.c │ │ │ ├── lossless_enc_mips32.c │ │ │ ├── lossless_enc_mips_dsp_r2.c │ │ │ ├── lossless_enc_msa.c │ │ │ ├── lossless_enc_neon.c │ │ │ ├── lossless_enc_sse2.c │ │ │ ├── lossless_enc_sse41.c │ │ │ ├── lossless_mips_dsp_r2.c │ │ │ ├── lossless_msa.c │ │ │ ├── lossless_neon.c │ │ │ ├── lossless_sse2.c │ │ │ ├── lossless_sse41.c │ │ │ ├── mips_macro.h │ │ │ ├── msa_macro.h │ │ │ ├── neon.h │ │ │ ├── quant.h │ │ │ ├── rescaler.c │ │ │ ├── rescaler_mips32.c │ │ │ ├── rescaler_mips_dsp_r2.c │ │ │ ├── rescaler_msa.c │ │ │ ├── rescaler_neon.c │ │ │ ├── rescaler_sse2.c │ │ │ ├── ssim.c │ │ │ ├── ssim_sse2.c │ │ │ ├── upsampling.c │ │ │ ├── upsampling_mips_dsp_r2.c │ │ │ ├── upsampling_msa.c │ │ │ ├── upsampling_neon.c │ │ │ ├── upsampling_sse2.c │ │ │ ├── upsampling_sse41.c │ │ │ ├── yuv.c │ │ │ ├── yuv.h │ │ │ ├── yuv_mips32.c │ │ │ ├── yuv_mips_dsp_r2.c │ │ │ ├── yuv_neon.c │ │ │ ├── yuv_sse2.c │ │ │ └── yuv_sse41.c │ │ ├── enc │ │ │ ├── Makefile.am │ │ │ ├── alpha_enc.c │ │ │ ├── analysis_enc.c │ │ │ ├── backward_references_cost_enc.c │ │ │ ├── backward_references_enc.c │ │ │ ├── backward_references_enc.h │ │ │ ├── config_enc.c │ │ │ ├── cost_enc.c │ │ │ ├── cost_enc.h │ │ │ ├── filter_enc.c │ │ │ ├── frame_enc.c │ │ │ ├── histogram_enc.c │ │ │ ├── histogram_enc.h │ │ │ ├── iterator_enc.c │ │ │ ├── near_lossless_enc.c │ │ │ ├── picture_csp_enc.c │ │ │ ├── picture_enc.c │ │ │ ├── picture_psnr_enc.c │ │ │ ├── picture_rescale_enc.c │ │ │ ├── picture_tools_enc.c │ │ │ ├── predictor_enc.c │ │ │ ├── quant_enc.c │ │ │ ├── syntax_enc.c │ │ │ ├── token_enc.c │ │ │ ├── tree_enc.c │ │ │ ├── vp8i_enc.h │ │ │ ├── vp8l_enc.c │ │ │ ├── vp8li_enc.h │ │ │ └── webp_enc.c │ │ ├── libwebp.pc.in │ │ ├── libwebp.rc │ │ ├── libwebpdecoder.pc.in │ │ ├── libwebpdecoder.rc │ │ ├── mux │ │ │ ├── Makefile.am │ │ │ ├── anim_encode.c │ │ │ ├── animi.h │ │ │ ├── libwebpmux.pc.in │ │ │ ├── libwebpmux.rc │ │ │ ├── muxedit.c │ │ │ ├── muxi.h │ │ │ ├── muxinternal.c │ │ │ └── muxread.c │ │ ├── utils │ │ │ ├── Makefile.am │ │ │ ├── bit_reader_inl_utils.h │ │ │ ├── bit_reader_utils.c │ │ │ ├── bit_reader_utils.h │ │ │ ├── bit_writer_utils.c │ │ │ ├── bit_writer_utils.h │ │ │ ├── color_cache_utils.c │ │ │ ├── color_cache_utils.h │ │ │ ├── endian_inl_utils.h │ │ │ ├── filters_utils.c │ │ │ ├── filters_utils.h │ │ │ ├── huffman_encode_utils.c │ │ │ ├── huffman_encode_utils.h │ │ │ ├── huffman_utils.c │ │ │ ├── huffman_utils.h │ │ │ ├── palette.c │ │ │ ├── palette.h │ │ │ ├── quant_levels_dec_utils.c │ │ │ ├── quant_levels_dec_utils.h │ │ │ ├── quant_levels_utils.c │ │ │ ├── quant_levels_utils.h │ │ │ ├── random_utils.c │ │ │ ├── random_utils.h │ │ │ ├── rescaler_utils.c │ │ │ ├── rescaler_utils.h │ │ │ ├── thread_utils.c │ │ │ ├── thread_utils.h │ │ │ ├── utils.c │ │ │ └── utils.h │ │ └── webp │ │ │ ├── decode.h │ │ │ ├── demux.h │ │ │ ├── encode.h │ │ │ ├── format_constants.h │ │ │ ├── mux.h │ │ │ ├── mux_types.h │ │ │ └── types.h │ ├── swig │ │ ├── README.md │ │ ├── libwebp.go │ │ ├── libwebp.jar │ │ ├── libwebp.py │ │ ├── libwebp.swig │ │ ├── libwebp_gc.c │ │ ├── libwebp_go_wrap.c │ │ ├── libwebp_java_wrap.c │ │ ├── libwebp_python_wrap.c │ │ └── setup.py │ ├── tests │ │ ├── README.md │ │ └── fuzzer │ │ │ ├── advanced_api_fuzzer.c │ │ │ ├── animation_api_fuzzer.c │ │ │ ├── animdecoder_fuzzer.cc │ │ │ ├── animencoder_fuzzer.cc │ │ │ ├── enc_dec_fuzzer.cc │ │ │ ├── fuzz.dict │ │ │ ├── fuzz_utils.h │ │ │ ├── huffman_fuzzer.c │ │ │ ├── img_alpha.h │ │ │ ├── img_grid.h │ │ │ ├── img_peak.h │ │ │ ├── makefile.unix │ │ │ ├── mux_demux_api_fuzzer.c │ │ │ └── simple_api_fuzzer.c │ ├── webp_js │ │ ├── README.md │ │ ├── index.html │ │ ├── index_wasm.html │ │ ├── test_webp_js.webp │ │ └── test_webp_wasm.webp │ └── xcframeworkbuild.sh ├── lzma │ ├── 7zC.txt │ ├── 7zFormat.txt │ ├── Asm │ │ ├── arm │ │ │ └── 7zCrcOpt.asm │ │ └── x86 │ │ │ ├── 7zAsm.asm │ │ │ ├── 7zCrcOpt.asm │ │ │ └── AesOpt.asm │ ├── C │ │ ├── 7z.h │ │ ├── 7zAlloc.c │ │ ├── 7zAlloc.h │ │ ├── 7zBuf.c │ │ ├── 7zBuf.h │ │ ├── 7zBuf2.c │ │ ├── 7zCrc.c │ │ ├── 7zCrc.h │ │ ├── 7zCrcOpt.c │ │ ├── 7zDec.c │ │ ├── 7zFile.c │ │ ├── 7zFile.h │ │ ├── 7zIn.c │ │ ├── 7zStream.c │ │ ├── 7zVersion.h │ │ ├── 7zVersion.rc │ │ ├── Alloc.c │ │ ├── Alloc.h │ │ ├── Bcj2.c │ │ ├── Bcj2.h │ │ ├── Bra.c │ │ ├── Bra.h │ │ ├── Bra86.c │ │ ├── BraIA64.c │ │ ├── CpuArch.c │ │ ├── CpuArch.h │ │ ├── Delta.c │ │ ├── Delta.h │ │ ├── LzFind.c │ │ ├── LzFind.h │ │ ├── LzFindMt.c │ │ ├── LzFindMt.h │ │ ├── LzHash.h │ │ ├── Lzma2Dec.c │ │ ├── Lzma2Dec.h │ │ ├── Lzma2Enc.c │ │ ├── Lzma2Enc.h │ │ ├── Lzma86.h │ │ ├── Lzma86Dec.c │ │ ├── Lzma86Enc.c │ │ ├── LzmaDec.c │ │ ├── LzmaDec.h │ │ ├── LzmaEnc.c │ │ ├── LzmaEnc.h │ │ ├── LzmaLib.c │ │ ├── LzmaLib.h │ │ ├── MtCoder.c │ │ ├── MtCoder.h │ │ ├── Ppmd.h │ │ ├── Ppmd7.c │ │ ├── Ppmd7.h │ │ ├── Ppmd7Dec.c │ │ ├── Ppmd7Enc.c │ │ ├── RotateDefs.h │ │ ├── Sha256.c │ │ ├── Sha256.h │ │ ├── Threads.c │ │ ├── Threads.h │ │ ├── Types.h │ │ ├── Util │ │ │ ├── 7z │ │ │ │ ├── 7z.dsp │ │ │ │ ├── 7z.dsw │ │ │ │ ├── 7zMain.c │ │ │ │ ├── makefile │ │ │ │ └── makefile.gcc │ │ │ ├── Lzma │ │ │ │ ├── LzmaUtil.c │ │ │ │ ├── LzmaUtil.dsp │ │ │ │ ├── LzmaUtil.dsw │ │ │ │ ├── makefile │ │ │ │ └── makefile.gcc │ │ │ ├── LzmaLib │ │ │ │ ├── LzmaLib.def │ │ │ │ ├── LzmaLib.dsp │ │ │ │ ├── LzmaLib.dsw │ │ │ │ ├── LzmaLibExports.c │ │ │ │ ├── makefile │ │ │ │ └── resource.rc │ │ │ └── SfxSetup │ │ │ │ ├── SfxSetup.c │ │ │ │ ├── SfxSetup.dsp │ │ │ │ ├── SfxSetup.dsw │ │ │ │ ├── makefile │ │ │ │ ├── makefile_con │ │ │ │ ├── resource.rc │ │ │ │ └── setup.ico │ │ ├── Xz.c │ │ ├── Xz.h │ │ ├── XzCrc64.c │ │ ├── XzCrc64.h │ │ ├── XzDec.c │ │ ├── XzEnc.c │ │ ├── XzEnc.h │ │ └── XzIn.c │ ├── Methods.txt │ ├── history.txt │ └── lzma.txt ├── mujs │ ├── .gitignore │ ├── AUTHORS │ ├── COPYING │ ├── Makefile │ ├── README │ ├── astnames.h │ ├── docs │ │ ├── artifex-logo.png │ │ ├── examples.html │ │ ├── index.html │ │ ├── introduction.html │ │ ├── license.html │ │ ├── logo.ps │ │ ├── mujs-logo.png │ │ ├── reference.html │ │ └── style.css │ ├── genucd.py │ ├── jsarray.c │ ├── jsboolean.c │ ├── jsbuiltin.c │ ├── jscompile.c │ ├── jsdate.c │ ├── jsdtoa.c │ ├── jserror.c │ ├── jsfunction.c │ ├── jsgc.c │ ├── jsi.h │ ├── jsintern.c │ ├── jslex.c │ ├── jsmath.c │ ├── jsnumber.c │ ├── jsobject.c │ ├── json.c │ ├── jsparse.c │ ├── jsproperty.c │ ├── jsregexp.c │ ├── jsrepr.c │ ├── jsrun.c │ ├── jsstate.c │ ├── jsstring.c │ ├── jsvalue.c │ ├── main.c │ ├── mujs.h │ ├── one.c │ ├── opnames.h │ ├── pp.c │ ├── regexp.c │ ├── regexp.h │ ├── tools │ │ ├── test262 │ │ └── test262-harness.js │ ├── utf.c │ ├── utf.h │ └── utfdata.h ├── mupdf_load_system_font.c ├── openjpeg │ ├── AUTHORS.md │ ├── CHANGELOG.md │ ├── INSTALL.md │ ├── LICENSE │ ├── NEWS.md │ ├── README.md │ ├── THANKS.md │ ├── appveyor.yml │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── Doxyfile.dox.cmake.in │ │ ├── jpip_architect.png │ │ ├── jpip_protocol.png │ │ ├── mainpage.dox.in │ │ ├── man │ │ │ ├── man1 │ │ │ │ ├── opj_compress.1 │ │ │ │ ├── opj_decompress.1 │ │ │ │ └── opj_dump.1 │ │ │ └── man3 │ │ │ │ └── libopenjp2.3 │ │ └── openjpip.dox.in │ └── src │ │ ├── CMakeLists.txt │ │ └── lib │ │ ├── CMakeLists.txt │ │ └── openjp2 │ │ ├── CMakeLists.txt │ │ ├── bench_dwt.c │ │ ├── bio.c │ │ ├── bio.h │ │ ├── cidx_manager.c │ │ ├── cidx_manager.h │ │ ├── cio.c │ │ ├── cio.h │ │ ├── dwt.c │ │ ├── dwt.h │ │ ├── event.c │ │ ├── event.h │ │ ├── function_list.c │ │ ├── function_list.h │ │ ├── ht_dec.c │ │ ├── image.c │ │ ├── image.h │ │ ├── indexbox_manager.h │ │ ├── invert.c │ │ ├── invert.h │ │ ├── j2k.c │ │ ├── j2k.h │ │ ├── jp2.c │ │ ├── jp2.h │ │ ├── libopenjp2.pc.cmake.in │ │ ├── mct.c │ │ ├── mct.h │ │ ├── mqc.c │ │ ├── mqc.h │ │ ├── mqc_inl.h │ │ ├── openjpeg.c │ │ ├── openjpeg.h │ │ ├── opj_clock.c │ │ ├── opj_clock.h │ │ ├── opj_codec.h │ │ ├── opj_common.h │ │ ├── opj_config.h │ │ ├── opj_config.h.cmake.in │ │ ├── opj_config_private.h │ │ ├── opj_config_private.h.cmake.in │ │ ├── opj_includes.h │ │ ├── opj_intmath.h │ │ ├── opj_inttypes.h │ │ ├── opj_malloc.c │ │ ├── opj_malloc.h │ │ ├── opj_stdint.h │ │ ├── phix_manager.c │ │ ├── pi.c │ │ ├── pi.h │ │ ├── ppix_manager.c │ │ ├── sparse_array.c │ │ ├── sparse_array.h │ │ ├── t1.c │ │ ├── t1.h │ │ ├── t1_generate_luts.c │ │ ├── t1_ht_generate_luts.c │ │ ├── t1_ht_luts.h │ │ ├── t1_luts.h │ │ ├── t2.c │ │ ├── t2.h │ │ ├── tcd.c │ │ ├── tcd.h │ │ ├── test_sparse_array.c │ │ ├── tgt.c │ │ ├── tgt.h │ │ ├── thix_manager.c │ │ ├── thread.c │ │ ├── thread.h │ │ ├── tls_keys.h │ │ └── tpix_manager.c ├── synctex │ ├── LICENSE │ ├── synctex_parser.c │ ├── synctex_parser.h │ ├── synctex_parser_advanced.h │ ├── synctex_parser_api_level.txt │ ├── synctex_parser_c-auto.h │ ├── synctex_parser_local.h │ ├── synctex_parser_readme.md │ ├── synctex_parser_readme.txt │ ├── synctex_parser_utils.c │ ├── synctex_parser_utils.h │ ├── synctex_parser_version.txt │ └── synctex_version.h ├── unarr │ ├── AUTHORS │ ├── COPYING │ ├── Makefile │ ├── README │ ├── _7z │ │ ├── _7z.c │ │ └── _7z.h │ ├── common │ │ ├── allocator.h │ │ ├── conv.c │ │ ├── crc32.c │ │ ├── custalloc.c │ │ ├── stream.c │ │ ├── unarr-imp.h │ │ └── unarr.c │ ├── lzmasdk │ │ ├── 7zTypes.h │ │ ├── CpuArch.c │ │ ├── CpuArch.h │ │ ├── LzmaDec.c │ │ ├── LzmaDec.h │ │ ├── Ppmd.h │ │ ├── Ppmd7.c │ │ ├── Ppmd7.h │ │ ├── Ppmd7Dec.c │ │ ├── Ppmd8.c │ │ ├── Ppmd8.h │ │ ├── Ppmd8Dec.c │ │ └── Precomp.h │ ├── main.c │ ├── rar │ │ ├── filter-rar.c │ │ ├── huffman-rar.c │ │ ├── lzss.h │ │ ├── parse-rar.c │ │ ├── rar.c │ │ ├── rar.h │ │ ├── rarvm.c │ │ ├── rarvm.h │ │ └── uncompress-rar.c │ ├── tar │ │ ├── parse-tar.c │ │ ├── tar.c │ │ └── tar.h │ ├── unarr.h │ └── zip │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── parse-zip.c │ │ ├── uncompress-zip.c │ │ ├── zip.c │ │ └── zip.h ├── unrar │ ├── UnRAR.vcxproj │ ├── UnRARDll.vcxproj │ ├── acknow.txt │ ├── arccmt.cpp │ ├── archive.cpp │ ├── archive.hpp │ ├── arcread.cpp │ ├── blake2s.cpp │ ├── blake2s.hpp │ ├── blake2s_sse.cpp │ ├── blake2sp.cpp │ ├── cmddata.cpp │ ├── cmddata.hpp │ ├── cmdfilter.cpp │ ├── cmdmix.cpp │ ├── coder.cpp │ ├── coder.hpp │ ├── compress.hpp │ ├── consio.cpp │ ├── consio.hpp │ ├── crc.cpp │ ├── crc.hpp │ ├── crypt.cpp │ ├── crypt.hpp │ ├── crypt1.cpp │ ├── crypt2.cpp │ ├── crypt3.cpp │ ├── crypt5.cpp │ ├── dll.cpp │ ├── dll.def │ ├── dll.hpp │ ├── dll.rc │ ├── dll_nocrypt.def │ ├── encname.cpp │ ├── encname.hpp │ ├── errhnd.cpp │ ├── errhnd.hpp │ ├── extinfo.cpp │ ├── extinfo.hpp │ ├── extract.cpp │ ├── extract.hpp │ ├── filcreat.cpp │ ├── filcreat.hpp │ ├── file.cpp │ ├── file.hpp │ ├── filefn.cpp │ ├── filefn.hpp │ ├── filestr.cpp │ ├── filestr.hpp │ ├── find.cpp │ ├── find.hpp │ ├── getbits.cpp │ ├── getbits.hpp │ ├── global.cpp │ ├── global.hpp │ ├── hardlinks.cpp │ ├── hash.cpp │ ├── hash.hpp │ ├── headers.cpp │ ├── headers.hpp │ ├── headers5.hpp │ ├── isnt.cpp │ ├── isnt.hpp │ ├── largepage.cpp │ ├── largepage.hpp │ ├── license.txt │ ├── list.cpp │ ├── list.hpp │ ├── loclang.hpp │ ├── log.cpp │ ├── log.hpp │ ├── makefile │ ├── match.cpp │ ├── match.hpp │ ├── model.cpp │ ├── model.hpp │ ├── motw.cpp │ ├── motw.hpp │ ├── options.cpp │ ├── options.hpp │ ├── os.hpp │ ├── pathfn.cpp │ ├── pathfn.hpp │ ├── qopen.cpp │ ├── qopen.hpp │ ├── rar.cpp │ ├── rar.hpp │ ├── rardefs.hpp │ ├── rarlang.hpp │ ├── raros.hpp │ ├── rarpch.cpp │ ├── rartypes.hpp │ ├── rarvm.cpp │ ├── rarvm.hpp │ ├── rawint.hpp │ ├── rawread.cpp │ ├── rawread.hpp │ ├── rdwrfn.cpp │ ├── rdwrfn.hpp │ ├── readme.txt │ ├── recvol.cpp │ ├── recvol.hpp │ ├── recvol3.cpp │ ├── recvol5.cpp │ ├── resource.cpp │ ├── resource.hpp │ ├── rijndael.cpp │ ├── rijndael.hpp │ ├── rs.cpp │ ├── rs.hpp │ ├── rs16.cpp │ ├── rs16.hpp │ ├── scantree.cpp │ ├── scantree.hpp │ ├── secpassword.cpp │ ├── secpassword.hpp │ ├── sha1.cpp │ ├── sha1.hpp │ ├── sha256.cpp │ ├── sha256.hpp │ ├── smallfn.cpp │ ├── smallfn.hpp │ ├── strfn.cpp │ ├── strfn.hpp │ ├── strlist.cpp │ ├── strlist.hpp │ ├── suballoc.cpp │ ├── suballoc.hpp │ ├── system.cpp │ ├── system.hpp │ ├── threadmisc.cpp │ ├── threadpool.cpp │ ├── threadpool.hpp │ ├── timefn.cpp │ ├── timefn.hpp │ ├── ui.cpp │ ├── ui.hpp │ ├── uicommon.cpp │ ├── uiconsole.cpp │ ├── uisilent.cpp │ ├── ulinks.cpp │ ├── unicode.cpp │ ├── unicode.hpp │ ├── unpack.cpp │ ├── unpack.hpp │ ├── unpack15.cpp │ ├── unpack20.cpp │ ├── unpack30.cpp │ ├── unpack50.cpp │ ├── unpack50frag.cpp │ ├── unpack50mt.cpp │ ├── unpackinline.cpp │ ├── uowners.cpp │ ├── version.hpp │ ├── volume.cpp │ ├── volume.hpp │ ├── win32acl.cpp │ ├── win32lnk.cpp │ └── win32stm.cpp ├── versions.txt ├── zlib-ng │ ├── CMakeLists.txt │ ├── FAQ.zlib │ ├── INDEX.md │ ├── LICENSE.md │ ├── Makefile.in │ ├── PORTING.md │ ├── README.md │ ├── adler32.c │ ├── adler32_p.h │ ├── arch │ │ ├── .gitignore │ │ ├── arm │ │ │ ├── Makefile.in │ │ │ ├── adler32_neon.c │ │ │ ├── arm.h │ │ │ ├── armfeature.c │ │ │ ├── chunkset_neon.c │ │ │ ├── crc32_acle.c │ │ │ ├── ctzl.h │ │ │ ├── insert_string_acle.c │ │ │ └── slide_neon.c │ │ ├── generic │ │ │ └── Makefile.in │ │ ├── power │ │ │ ├── Makefile.in │ │ │ ├── adler32_power8.c │ │ │ ├── power.c │ │ │ ├── power.h │ │ │ └── slide_hash_power8.c │ │ ├── s390 │ │ │ ├── Makefile.in │ │ │ ├── README.md │ │ │ ├── dfltcc_common.c │ │ │ ├── dfltcc_common.h │ │ │ ├── dfltcc_deflate.c │ │ │ ├── dfltcc_deflate.h │ │ │ ├── dfltcc_detail.h │ │ │ ├── dfltcc_inflate.c │ │ │ └── dfltcc_inflate.h │ │ └── x86 │ │ │ ├── INDEX.md │ │ │ ├── Makefile.in │ │ │ ├── adler32_avx.c │ │ │ ├── adler32_ssse3.c │ │ │ ├── chunkset_avx.c │ │ │ ├── chunkset_sse.c │ │ │ ├── compare258_avx.c │ │ │ ├── compare258_sse.c │ │ │ ├── crc_folding.c │ │ │ ├── crc_folding.h │ │ │ ├── insert_string_sse.c │ │ │ ├── slide_avx.c │ │ │ ├── slide_sse.c │ │ │ ├── x86.c │ │ │ └── x86.h │ ├── chunkset.c │ ├── chunkset_tpl.h │ ├── compare258.c │ ├── compress.c │ ├── configure │ ├── crc32.c │ ├── crc32_comb.c │ ├── crc32_comb_tbl.h │ ├── crc32_p.h │ ├── crc32_tbl.h │ ├── deflate.c │ ├── deflate.h │ ├── deflate_fast.c │ ├── deflate_medium.c │ ├── deflate_p.h │ ├── deflate_quick.c │ ├── deflate_slow.c │ ├── fallback_builtins.h │ ├── functable.c │ ├── functable.h │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed_tbl.h │ ├── inflate.c │ ├── inflate.h │ ├── inflate_p.h │ ├── inftrees.c │ ├── inftrees.h │ ├── insert_string.c │ ├── insert_string_tpl.h │ ├── match_tpl.h │ ├── trees.c │ ├── trees.h │ ├── trees_emit.h │ ├── trees_tbl.h │ ├── uncompr.c │ ├── zbuild.h │ ├── zconf-ng.h.in │ ├── zconf.h │ ├── zconf.h.in │ ├── zendian.h │ ├── zlib-ng.h │ ├── zlib-ng.map │ ├── zlib.h │ ├── zlib.map │ ├── zlib.pc.cmakein │ ├── zlib.pc.in │ ├── zutil.c │ ├── zutil.h │ └── zutil_p.h └── zlib │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── LICENSE │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── adler32.c │ ├── amiga │ ├── Makefile.pup │ └── Makefile.sas │ ├── compress.c │ ├── configure │ ├── contrib │ ├── README.contrib │ ├── ada │ │ ├── buffer_demo.adb │ │ ├── mtest.adb │ │ ├── read.adb │ │ ├── readme.txt │ │ ├── test.adb │ │ ├── zlib-streams.adb │ │ ├── zlib-streams.ads │ │ ├── zlib-thin.adb │ │ ├── zlib-thin.ads │ │ ├── zlib.adb │ │ ├── zlib.ads │ │ └── zlib.gpr │ ├── blast │ │ ├── Makefile │ │ ├── README │ │ ├── blast.c │ │ ├── blast.h │ │ ├── test.pk │ │ └── test.txt │ ├── delphi │ │ ├── ZLib.pas │ │ ├── ZLibConst.pas │ │ ├── readme.txt │ │ └── zlibd32.mak │ ├── dotzlib │ │ ├── DotZLib.build │ │ ├── DotZLib.chm │ │ ├── DotZLib.sln │ │ ├── DotZLib │ │ │ ├── AssemblyInfo.cs │ │ │ ├── ChecksumImpl.cs │ │ │ ├── CircularBuffer.cs │ │ │ ├── CodecBase.cs │ │ │ ├── Deflater.cs │ │ │ ├── DotZLib.cs │ │ │ ├── DotZLib.csproj │ │ │ ├── GZipStream.cs │ │ │ ├── Inflater.cs │ │ │ └── UnitTests.cs │ │ ├── LICENSE_1_0.txt │ │ └── readme.txt │ ├── gcc_gvmat64 │ │ └── gvmat64.S │ ├── infback9 │ │ ├── README │ │ ├── infback9.c │ │ ├── infback9.h │ │ ├── inffix9.h │ │ ├── inflate9.h │ │ ├── inftree9.c │ │ └── inftree9.h │ ├── iostream │ │ ├── test.cpp │ │ ├── zfstream.cpp │ │ └── zfstream.h │ ├── iostream2 │ │ ├── zstream.h │ │ └── zstream_test.cpp │ ├── iostream3 │ │ ├── README │ │ ├── TODO │ │ ├── test.cc │ │ ├── zfstream.cc │ │ └── zfstream.h │ ├── minizip │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── MiniZip64_Changes.txt │ │ ├── MiniZip64_info.txt │ │ ├── configure.ac │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── iowin32.c │ │ ├── iowin32.h │ │ ├── make_vms.com │ │ ├── miniunz.c │ │ ├── miniunzip.1 │ │ ├── minizip.1 │ │ ├── minizip.c │ │ ├── minizip.pc.in │ │ ├── mztools.c │ │ ├── mztools.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h │ ├── nuget │ │ ├── nuget.csproj │ │ └── nuget.sln │ ├── pascal │ │ ├── example.pas │ │ ├── readme.txt │ │ ├── zlibd32.mak │ │ └── zlibpas.pas │ ├── puff │ │ ├── Makefile │ │ ├── README │ │ ├── puff.c │ │ ├── puff.h │ │ ├── pufftest.c │ │ └── zeros.raw │ ├── testzlib │ │ ├── testzlib.c │ │ └── testzlib.txt │ ├── untgz │ │ ├── Makefile │ │ ├── Makefile.msc │ │ └── untgz.c │ └── vstudio │ │ ├── readme.txt │ │ ├── vc10 │ │ ├── miniunz.vcxproj │ │ ├── miniunz.vcxproj.filters │ │ ├── minizip.vcxproj │ │ ├── minizip.vcxproj.filters │ │ ├── testzlib.vcxproj │ │ ├── testzlib.vcxproj.filters │ │ ├── testzlibdll.vcxproj │ │ ├── testzlibdll.vcxproj.filters │ │ ├── zlib.rc │ │ ├── zlibstat.vcxproj │ │ ├── zlibstat.vcxproj.filters │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ ├── zlibvc.vcxproj │ │ └── zlibvc.vcxproj.filters │ │ ├── vc11 │ │ ├── miniunz.vcxproj │ │ ├── minizip.vcxproj │ │ ├── testzlib.vcxproj │ │ ├── testzlibdll.vcxproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcxproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcxproj │ │ ├── vc12 │ │ ├── miniunz.vcxproj │ │ ├── minizip.vcxproj │ │ ├── testzlib.vcxproj │ │ ├── testzlibdll.vcxproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcxproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcxproj │ │ ├── vc14 │ │ ├── miniunz.vcxproj │ │ ├── minizip.vcxproj │ │ ├── testzlib.vcxproj │ │ ├── testzlibdll.vcxproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcxproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcxproj │ │ ├── vc17 │ │ ├── miniunz.vcxproj │ │ ├── minizip.vcxproj │ │ ├── testzlib.vcxproj │ │ ├── testzlibdll.vcxproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcxproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcxproj │ │ └── vc9 │ │ ├── miniunz.vcproj │ │ ├── minizip.vcproj │ │ ├── testzlib.vcproj │ │ ├── testzlibdll.vcproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcproj │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── doc │ ├── algorithm.txt │ ├── crc-doc.1.0.pdf │ ├── rfc1950.txt │ ├── rfc1951.txt │ ├── rfc1952.txt │ └── txtvsbin.txt │ ├── examples │ ├── README.examples │ ├── enough.c │ ├── fitblk.c │ ├── gun.c │ ├── gzappend.c │ ├── gzjoin.c │ ├── gzlog.c │ ├── gzlog.h │ ├── gznorm.c │ ├── zlib_how.html │ ├── zpipe.c │ ├── zran.c │ └── zran.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── make_vms.com │ ├── msdos │ ├── Makefile.bor │ ├── Makefile.dj2 │ ├── Makefile.emx │ ├── Makefile.msc │ └── Makefile.tc │ ├── nintendods │ ├── Makefile │ └── README │ ├── old │ ├── Makefile.emx │ ├── Makefile.riscos │ ├── README │ ├── descrip.mms │ ├── os2 │ │ ├── Makefile.os2 │ │ └── zlib.def │ └── visual-basic.txt │ ├── os400 │ ├── README400 │ ├── bndsrc │ ├── make.sh │ └── zlib.inc │ ├── qnx │ └── package.qpg │ ├── test │ ├── example.c │ ├── infcover.c │ └── minigzip.c │ ├── treebuild.xml │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── watcom │ ├── watcom_f.mak │ └── watcom_l.mak │ ├── win32 │ ├── DLL_FAQ.txt │ ├── Makefile.bor │ ├── Makefile.gcc │ ├── Makefile.msc │ ├── README-WIN32.txt │ ├── VisualC.txt │ ├── zlib.def │ └── zlib1.rc │ ├── zconf.h │ ├── zconf.h.cmakein │ ├── zconf.h.in │ ├── zlib.3 │ ├── zlib.3.pdf │ ├── zlib.h │ ├── zlib.map │ ├── zlib.pc.cmakein │ ├── zlib.pc.in │ ├── zlib2ansi │ ├── zutil.c │ └── zutil.h ├── gfx ├── PdfDoc.ico ├── SumatraPDF-128x128x32.png ├── SumatraPDF-16x16x32.png ├── SumatraPDF-256x256x32.png ├── SumatraPDF-32x32x32.png ├── SumatraPDF-48x48x32.png ├── SumatraPDF-smaller.ico ├── SumatraPDF.ico ├── cbx-32bit.ico ├── chm-32bit.ico ├── djvu-32bit.ico ├── epub-32bit.ico ├── gfxalt │ ├── PdfDoc.ico │ ├── Sumatra Icons.xd │ ├── SumatraPDF-128x128x32.png │ ├── SumatraPDF-16x16x32.png │ ├── SumatraPDF-256x256x32.png │ ├── SumatraPDF-32x32x32.png │ ├── SumatraPDF-48x48x32.png │ ├── SumatraPDF-smaller.ico │ ├── SumatraPDF.ico │ ├── cbx-32bit.ico │ ├── chm-32bit.ico │ ├── djvu-32bit.ico │ ├── epub-32bit.ico │ ├── pdf-32bit.ico │ └── svg │ │ ├── PdfDoc – 1.svg │ │ ├── PdfDoc – 2.svg │ │ ├── PdfDoc.svg │ │ ├── SumatraPDF.svg │ │ ├── cbx-32bit.svg │ │ ├── chm-32bit.svg │ │ ├── djvu-32bit.svg │ │ ├── epub-32bit.svg │ │ ├── mobi-32bit.svg │ │ └── pdf-32bit.svg ├── mobi-32bit.ico ├── pdf-32bit.ico └── zenon-original-icon.zip ├── go.mod ├── go.sum ├── go.work ├── go.work.sum ├── main.go ├── mupdf ├── .editorconfig ├── .github │ └── workflows │ │ ├── codeql.yml │ │ ├── test_csharp.yml │ │ └── test_python_pip.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yaml ├── CHANGES ├── CONTRIBUTORS ├── COPYING ├── Makefile ├── Makelists ├── Makerules ├── Makethird ├── README ├── docs │ ├── README │ ├── _static │ │ ├── custom.css │ │ ├── discord-mark-blue.svg │ │ ├── favicon.ico │ │ ├── mupdf-sidebar-logo.png │ │ └── mupdf-sidebar-logo.webp │ ├── conf.py │ ├── cookbook │ │ ├── c │ │ │ ├── example.rst │ │ │ ├── index.rst │ │ │ ├── multi-threaded.rst │ │ │ └── storytest.rst │ │ ├── javascript │ │ │ ├── advanced.rst │ │ │ ├── basics.md │ │ │ └── index.rst │ │ ├── mupdf-explored.md │ │ └── progressive-loading.md │ ├── examples │ │ ├── SnarkFront.svg │ │ ├── bbox-device.js │ │ ├── copy-outline.js │ │ ├── create-thumbnail.js │ │ ├── draw-device.js │ │ ├── draw-document.js │ │ ├── example.c │ │ ├── fix-s22pdf.js │ │ ├── huntingofthesnark.png │ │ ├── import-fdf.js │ │ ├── jpx-to-pdf.js │ │ ├── multi-threaded.c │ │ ├── pdf-bake.js │ │ ├── pdf-create-lowlevel.js │ │ ├── pdf-create.js │ │ ├── pdf-dejpx.js │ │ ├── pdf-extract-rich-media.js │ │ ├── pdf-merge.js │ │ ├── pdf-portfolio.js │ │ ├── pdf-trace.js │ │ ├── reconvert-cmyk.js │ │ ├── storytest.c │ │ ├── storytest.js │ │ └── trace-device.js │ ├── guide │ │ ├── install.md │ │ ├── using-with-android.md │ │ ├── using-with-java.md │ │ ├── using-with-javascript.md │ │ └── what-is-mupdf.md │ ├── images │ │ ├── 200x200-rect.png │ │ ├── 200x200-rect.webp │ │ ├── blendmodes.svg │ │ ├── callout-annot.png │ │ ├── callout-annot.webp │ │ ├── curveTo.svg │ │ ├── curveToV.svg │ │ ├── curveToY.svg │ │ ├── discord-mark-blue.svg │ │ ├── img-coordinate-space.png │ │ ├── img-coordinate-space.webp │ │ ├── isolated-and-knockout.png │ │ ├── isolated-and-knockout.webp │ │ ├── knockout-isolated.svg │ │ ├── leader-lines.png │ │ ├── leader-lines.webp │ │ ├── line-caps.svg │ │ ├── line-ending-styles.svg │ │ ├── line-joins.svg │ │ ├── lineTo.svg │ │ ├── miter-limit.svg │ │ ├── mupdf-icon.svg │ │ ├── mupdf-web-icon.png │ │ ├── mupdf-web-icon.webp │ │ ├── mupdf_explored_optimized.webp │ │ ├── offset-caption.png │ │ ├── offset-caption.webp │ │ └── rect.svg │ ├── index.rst │ ├── license.md │ ├── logo │ │ ├── mupdf-icon-128.png │ │ ├── mupdf-icon-16.png │ │ ├── mupdf-icon-24.png │ │ ├── mupdf-icon-256.png │ │ ├── mupdf-icon-32.png │ │ ├── mupdf-icon-48.png │ │ ├── mupdf-icon-512.png │ │ ├── mupdf-icon-72.png │ │ ├── mupdf-icon.ico │ │ ├── mupdf-icon.svg │ │ ├── mupdf-icon.xpm │ │ ├── mupdf-logo.svg │ │ ├── mupdf-mono-icon.svg │ │ ├── mupdf_icon.xml │ │ ├── playstore-feature-editable.svg │ │ ├── playstore-feature.png │ │ ├── playstore-feature.svg │ │ ├── playstore-feature2.png │ │ ├── playstore-feature2.svg │ │ └── playstore-icon.png │ ├── man │ │ ├── mupdf.1 │ │ └── mutool.1 │ ├── other │ │ ├── changes.md │ │ └── third-party.rst │ ├── reference │ │ ├── c │ │ │ ├── coding-style.md │ │ │ ├── fitz │ │ │ │ ├── colors.md │ │ │ │ ├── context.md │ │ │ │ ├── data-structures.md │ │ │ │ ├── error.md │ │ │ │ ├── index.rst │ │ │ │ ├── io.md │ │ │ │ ├── math.md │ │ │ │ ├── memory.md │ │ │ │ ├── pixmap.md │ │ │ │ ├── strings.md │ │ │ │ └── xml.md │ │ │ ├── index.rst │ │ │ ├── introduction.md │ │ │ ├── overview.md │ │ │ └── pdf │ │ │ │ └── index.rst │ │ ├── common │ │ │ ├── coordinate-system.rst │ │ │ ├── document-writer-options.md │ │ │ ├── glossary.rst │ │ │ ├── index.rst │ │ │ ├── pdf-write-options.md │ │ │ └── stext-options.md │ │ ├── javascript │ │ │ ├── functions.rst │ │ │ ├── index.rst │ │ │ ├── introduction.rst │ │ │ └── types │ │ │ │ ├── Archive.rst │ │ │ │ ├── Buffer.rst │ │ │ │ ├── Color.rst │ │ │ │ ├── ColorSpace.rst │ │ │ │ ├── DOM.rst │ │ │ │ ├── DefaultColorSpaces.rst │ │ │ │ ├── Device.rst │ │ │ │ ├── DisplayList.rst │ │ │ │ ├── DisplayListDevice.rst │ │ │ │ ├── Document.rst │ │ │ │ ├── DocumentWriter.rst │ │ │ │ ├── DrawDevice.rst │ │ │ │ ├── Font.rst │ │ │ │ ├── Image.rst │ │ │ │ ├── Link.rst │ │ │ │ ├── LinkDestination.rst │ │ │ │ ├── Matrix.rst │ │ │ │ ├── MultiArchive.rst │ │ │ │ ├── OutlineItem.rst │ │ │ │ ├── OutlineIterator.rst │ │ │ │ ├── PDFAnnotation.rst │ │ │ │ ├── PDFDocument.rst │ │ │ │ ├── PDFFilespecParams.rst │ │ │ │ ├── PDFGraftMap.rst │ │ │ │ ├── PDFObject.rst │ │ │ │ ├── PDFPage.rst │ │ │ │ ├── PDFProcessor.rst │ │ │ │ ├── PDFWidget.rst │ │ │ │ ├── Page.rst │ │ │ │ ├── Path.rst │ │ │ │ ├── PathWalker.rst │ │ │ │ ├── Pixmap.rst │ │ │ │ ├── Point.rst │ │ │ │ ├── Quad.rst │ │ │ │ ├── Rect.rst │ │ │ │ ├── Shade.rst │ │ │ │ ├── Story.rst │ │ │ │ ├── StrokeState.rst │ │ │ │ ├── StructuredText.rst │ │ │ │ ├── StructuredTextWalker.rst │ │ │ │ ├── Text.rst │ │ │ │ ├── TextWalker.rst │ │ │ │ ├── TreeArchive.rst │ │ │ │ └── index.rst │ │ └── swig.rst │ ├── requirements.txt │ ├── src │ │ ├── C-API-core.rst │ │ ├── C-API-graphics.rst │ │ ├── C-API-io.rst │ │ ├── C-API.rst │ │ ├── README.md │ │ ├── _static │ │ │ ├── custom.css │ │ │ ├── discord-mark-blue.svg │ │ │ ├── favicon.ico │ │ │ ├── mupdf-sidebar-logo-dark.png │ │ │ ├── mupdf-sidebar-logo-light.png │ │ │ ├── mupdf-sidebar-logo.png │ │ │ └── mupdf-sidebar-logo.webp │ │ ├── android-library.rst │ │ ├── changes.rst │ │ ├── conf.py │ │ ├── coordinate-system.rst │ │ ├── footer.rst │ │ ├── header.rst │ │ ├── html_tags.rst │ │ ├── images │ │ │ ├── 200x200-rect.png │ │ │ ├── 200x200-rect.webp │ │ │ ├── callout-annot.png │ │ │ ├── callout-annot.webp │ │ │ ├── discord-mark-blue.svg │ │ │ ├── img-coordinate-space.png │ │ │ ├── img-coordinate-space.webp │ │ │ ├── isolated-and-knockout.png │ │ │ ├── isolated-and-knockout.webp │ │ │ ├── leader-lines.png │ │ │ ├── leader-lines.webp │ │ │ ├── mupdf-web-icon.png │ │ │ ├── mupdf-web-icon.webp │ │ │ ├── new.bak │ │ │ ├── offset-caption.png │ │ │ └── offset-caption.webp │ │ ├── index.rst │ │ ├── language-bindings.rst │ │ ├── mupdf-command-line.rst │ │ ├── mupdf-js.rst │ │ ├── mupdf-wasm.rst │ │ ├── mutool-audit.rst │ │ ├── mutool-bake.rst │ │ ├── mutool-barcode.rst │ │ ├── mutool-clean.rst │ │ ├── mutool-comma-separated-list-of-options.rst │ │ ├── mutool-convert.rst │ │ ├── mutool-create.rst │ │ ├── mutool-draw.rst │ │ ├── mutool-extract.rst │ │ ├── mutool-info.rst │ │ ├── mutool-merge.rst │ │ ├── mutool-object-archive.rst │ │ ├── mutool-object-buffer.rst │ │ ├── mutool-object-color-space.rst │ │ ├── mutool-object-device.rst │ │ ├── mutool-object-display-list-device.rst │ │ ├── mutool-object-display-list.rst │ │ ├── mutool-object-document-writer.rst │ │ ├── mutool-object-document.rst │ │ ├── mutool-object-dom.rst │ │ ├── mutool-object-draw-device.rst │ │ ├── mutool-object-font.rst │ │ ├── mutool-object-image.rst │ │ ├── mutool-object-link.rst │ │ ├── mutool-object-outline-iterator.rst │ │ ├── mutool-object-page.rst │ │ ├── mutool-object-path.rst │ │ ├── mutool-object-pdf-annotation.rst │ │ ├── mutool-object-pdf-document.rst │ │ ├── mutool-object-pdf-graft-map.rst │ │ ├── mutool-object-pdf-object.rst │ │ ├── mutool-object-pdf-page.rst │ │ ├── mutool-object-pdf-widget.rst │ │ ├── mutool-object-pixmap.rst │ │ ├── mutool-object-protocols.rst │ │ ├── mutool-object-shade.rst │ │ ├── mutool-object-story.rst │ │ ├── mutool-object-stroke-state.rst │ │ ├── mutool-object-structured-text.rst │ │ ├── mutool-object-text.rst │ │ ├── mutool-object-xml.rst │ │ ├── mutool-pages.rst │ │ ├── mutool-poster.rst │ │ ├── mutool-recolor.rst │ │ ├── mutool-run-js-api.rst │ │ ├── mutool-run.rst │ │ ├── mutool-show.rst │ │ ├── mutool-sign.rst │ │ ├── mutool-trace.rst │ │ ├── mutool-trim.rst │ │ ├── optional-command-line-note.rst │ │ ├── progressive-loading.rst │ │ ├── quick-start-guide.rst │ │ ├── requirements.txt │ │ ├── third-party.rst │ │ └── using-mupdf.rst │ └── tools │ │ ├── index.rst │ │ ├── mupdf-gl.rst │ │ ├── mutool-audit.rst │ │ ├── mutool-bake.rst │ │ ├── mutool-barcode.rst │ │ ├── mutool-clean.rst │ │ ├── mutool-convert.rst │ │ ├── mutool-create.rst │ │ ├── mutool-draw.rst │ │ ├── mutool-extract.rst │ │ ├── mutool-info.rst │ │ ├── mutool-merge.rst │ │ ├── mutool-pages.rst │ │ ├── mutool-poster.rst │ │ ├── mutool-recolor.rst │ │ ├── mutool-run.rst │ │ ├── mutool-show.rst │ │ ├── mutool-sign.rst │ │ ├── mutool-trace.rst │ │ ├── mutool-trim.rst │ │ └── mutool.rst ├── include │ └── mupdf │ │ ├── fitz.h │ │ ├── fitz │ │ ├── archive.h │ │ ├── band-writer.h │ │ ├── barcode.h │ │ ├── bidi.h │ │ ├── bitmap.h │ │ ├── buffer.h │ │ ├── color.h │ │ ├── compress.h │ │ ├── compressed-buffer.h │ │ ├── config.h │ │ ├── context.h │ │ ├── crypt.h │ │ ├── deskew.h │ │ ├── device.h │ │ ├── display-list.h │ │ ├── document.h │ │ ├── export.h │ │ ├── filter.h │ │ ├── font.h │ │ ├── geometry.h │ │ ├── getopt.h │ │ ├── glyph-cache.h │ │ ├── glyph.h │ │ ├── hash.h │ │ ├── heap-imp.h │ │ ├── heap.h │ │ ├── image.h │ │ ├── json.h │ │ ├── link.h │ │ ├── log.h │ │ ├── outline.h │ │ ├── output-svg.h │ │ ├── output.h │ │ ├── path.h │ │ ├── pixmap.h │ │ ├── pool.h │ │ ├── separation.h │ │ ├── shade.h │ │ ├── store.h │ │ ├── story-writer.h │ │ ├── story.h │ │ ├── stream.h │ │ ├── string-util.h │ │ ├── structured-text.h │ │ ├── system.h │ │ ├── text.h │ │ ├── track-usage.h │ │ ├── transition.h │ │ ├── tree.h │ │ ├── types.h │ │ ├── util.h │ │ ├── version.h │ │ ├── write-pixmap.h │ │ ├── writer.h │ │ └── xml.h │ │ ├── helpers │ │ ├── mu-office-lib.h │ │ ├── mu-threads.h │ │ └── pkcs7-openssl.h │ │ ├── html.h │ │ ├── memento.h │ │ ├── pdf.h │ │ ├── pdf │ │ ├── annot.h │ │ ├── clean.h │ │ ├── cmap.h │ │ ├── crypt.h │ │ ├── document.h │ │ ├── event.h │ │ ├── font.h │ │ ├── form.h │ │ ├── image-rewriter.h │ │ ├── interpret.h │ │ ├── javascript.h │ │ ├── name-table.h │ │ ├── object.h │ │ ├── page.h │ │ ├── parse.h │ │ ├── recolor.h │ │ ├── resource.h │ │ ├── xref.h │ │ └── zugferd.h │ │ └── ucdn.h ├── platform │ ├── gl │ │ ├── gl-annotate.c │ │ ├── gl-app.h │ │ ├── gl-file.c │ │ ├── gl-font.c │ │ ├── gl-form.c │ │ ├── gl-input.c │ │ ├── gl-main.c │ │ ├── gl-ui.c │ │ ├── gl-win32.c │ │ ├── gl-winres.rc │ │ └── mupdf.ico │ ├── java │ │ ├── Android.mk │ │ ├── Application.mk │ │ ├── Makefile │ │ ├── example │ │ │ ├── Example.java │ │ │ ├── MultiThreaded.java │ │ │ ├── MultiThreadedWithPool.java │ │ │ ├── PDFTrace.java │ │ │ ├── PageCanvas.java │ │ │ ├── StoryTest.java │ │ │ ├── TraceDevice.java │ │ │ ├── Viewer.java │ │ │ ├── ViewerCore.java │ │ │ └── Worker.java │ │ ├── init.jshell │ │ ├── jni │ │ │ ├── android │ │ │ │ ├── androiddrawdevice.c │ │ │ │ ├── androidfonts.c │ │ │ │ └── androidimage.c │ │ │ ├── archive.c │ │ │ ├── barcodeinfo.c │ │ │ ├── buffer.c │ │ │ ├── colorspace.c │ │ │ ├── context.c │ │ │ ├── cookie.c │ │ │ ├── defaultcolorspaces.c │ │ │ ├── device.c │ │ │ ├── displaylist.c │ │ │ ├── displaylistdevice.c │ │ │ ├── document.c │ │ │ ├── documentwriter.c │ │ │ ├── dom.c │ │ │ ├── drawdevice.c │ │ │ ├── fitzinputstream.c │ │ │ ├── font.c │ │ │ ├── helpers.c │ │ │ ├── image.c │ │ │ ├── link.c │ │ │ ├── multiarchive.c │ │ │ ├── nativedevice.c │ │ │ ├── outlineiterator.c │ │ │ ├── page.c │ │ │ ├── path.c │ │ │ ├── pdfannotation.c │ │ │ ├── pdfdocument.c │ │ │ ├── pdfgraftmap.c │ │ │ ├── pdfobject.c │ │ │ ├── pdfpage.c │ │ │ ├── pdfwidget.c │ │ │ ├── pixmap.c │ │ │ ├── pkcs7signer.c │ │ │ ├── pkcs7verifier.c │ │ │ ├── rect.c │ │ │ ├── shade.c │ │ │ ├── story.c │ │ │ ├── strokestate.c │ │ │ ├── structuredtext.c │ │ │ ├── text.c │ │ │ ├── treearchive.c │ │ │ └── wrap.c │ │ ├── mupdf_native.c │ │ ├── mupdf_native.h │ │ ├── src │ │ │ └── com │ │ │ │ └── artifex │ │ │ │ └── mupdf │ │ │ │ └── fitz │ │ │ │ ├── AbortException.java │ │ │ │ ├── Archive.java │ │ │ │ ├── BarcodeInfo.java │ │ │ │ ├── Buffer.java │ │ │ │ ├── BufferInputStream.java │ │ │ │ ├── BufferOutputStream.java │ │ │ │ ├── ColorParams.java │ │ │ │ ├── ColorSpace.java │ │ │ │ ├── Context.java │ │ │ │ ├── Cookie.java │ │ │ │ ├── DOM.java │ │ │ │ ├── DefaultAppearance.java │ │ │ │ ├── DefaultColorSpaces.java │ │ │ │ ├── Device.java │ │ │ │ ├── DisplayList.java │ │ │ │ ├── DisplayListDevice.java │ │ │ │ ├── Document.java │ │ │ │ ├── DocumentWriter.java │ │ │ │ ├── DrawDevice.java │ │ │ │ ├── FileStream.java │ │ │ │ ├── FitzInputStream.java │ │ │ │ ├── Font.java │ │ │ │ ├── Image.java │ │ │ │ ├── Link.java │ │ │ │ ├── LinkDestination.java │ │ │ │ ├── Location.java │ │ │ │ ├── Matrix.java │ │ │ │ ├── MultiArchive.java │ │ │ │ ├── NativeDevice.java │ │ │ │ ├── Outline.java │ │ │ │ ├── OutlineIterator.java │ │ │ │ ├── PDFAnnotation.java │ │ │ │ ├── PDFDocument.java │ │ │ │ ├── PDFGraftMap.java │ │ │ │ ├── PDFObject.java │ │ │ │ ├── PDFPage.java │ │ │ │ ├── PDFProcessor.java │ │ │ │ ├── PDFWidget.java │ │ │ │ ├── PKCS7DistinguishedName.java │ │ │ │ ├── PKCS7Signer.java │ │ │ │ ├── PKCS7Verifier.java │ │ │ │ ├── Page.java │ │ │ │ ├── Path.java │ │ │ │ ├── PathWalker.java │ │ │ │ ├── Pixmap.java │ │ │ │ ├── Point.java │ │ │ │ ├── Quad.java │ │ │ │ ├── Rect.java │ │ │ │ ├── RectI.java │ │ │ │ ├── SeekableInputOutputStream.java │ │ │ │ ├── SeekableInputStream.java │ │ │ │ ├── SeekableOutputStream.java │ │ │ │ ├── SeekableStream.java │ │ │ │ ├── Shade.java │ │ │ │ ├── Story.java │ │ │ │ ├── StrokeState.java │ │ │ │ ├── StructuredText.java │ │ │ │ ├── StructuredTextWalker.java │ │ │ │ ├── Text.java │ │ │ │ ├── TextWalker.java │ │ │ │ ├── TreeArchive.java │ │ │ │ ├── TryLaterException.java │ │ │ │ └── android │ │ │ │ ├── AndroidDrawDevice.java │ │ │ │ └── AndroidImage.java │ │ └── winmake.bat │ ├── wasm │ │ ├── .gitignore │ │ ├── BUILDING.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── examples │ │ │ ├── simple-viewer │ │ │ │ ├── README.md │ │ │ │ ├── favicon.svg │ │ │ │ ├── index.html │ │ │ │ └── worker.js │ │ │ ├── streams │ │ │ │ ├── README │ │ │ │ ├── custom-stream.js │ │ │ │ ├── fetch-stream.js │ │ │ │ └── fetch.js │ │ │ └── super-simple-viewer │ │ │ │ ├── README.md │ │ │ │ └── index.html │ │ ├── lib │ │ │ ├── mupdf.c │ │ │ └── mupdf.ts │ │ ├── package.json │ │ ├── tools │ │ │ ├── build.sh │ │ │ ├── compress.sh │ │ │ └── make-wasm-type.js │ │ └── tsconfig.json │ ├── win32 │ │ ├── README.txt │ │ ├── bin2coff.props │ │ ├── bin2coff.rules │ │ ├── bin2coff.targets │ │ ├── bin2coff.vcxproj │ │ ├── bin2coff.xml │ │ ├── dummy.c │ │ ├── javaviewer.vcxproj │ │ ├── javaviewerlib.vcxproj │ │ ├── javaviewerlib.vcxproj.filters │ │ ├── libcurl.vcxproj │ │ ├── libcurl.vcxproj.filters │ │ ├── libextract.vcxproj │ │ ├── libextract.vcxproj.filters │ │ ├── libfreeglut.vcxproj │ │ ├── libfreeglut.vcxproj.filters │ │ ├── libharfbuzz.vcxproj │ │ ├── libleptonica.vcxproj │ │ ├── libleptonica.vcxproj.filters │ │ ├── libluratech.vcxproj │ │ ├── libluratech.vcxproj.filters │ │ ├── libmubarcode.vcxproj │ │ ├── libmubarcode.vcxproj.filters │ │ ├── libmupdf.vcxproj │ │ ├── libmupdf.vcxproj.filters │ │ ├── libmuthreads.vcxproj │ │ ├── libmuthreads.vcxproj.filters │ │ ├── libmutool.vcxproj │ │ ├── libpkcs7.vcxproj │ │ ├── libpkcs7.vcxproj.filters │ │ ├── libresources.vcxproj │ │ ├── libresources.vcxproj.filters │ │ ├── libtesseract.vcxproj │ │ ├── libtesseract.vcxproj.filters │ │ ├── libthirdparty.vcxproj │ │ ├── libthirdparty.vcxproj.filters │ │ ├── libzxing.vcxproj │ │ ├── libzxing.vcxproj.filters │ │ ├── mu-office-lib.vcxproj │ │ ├── mu-office-lib.vcxproj.filters │ │ ├── mu-office-test.vcxproj │ │ ├── mudraw.vcxproj │ │ ├── mupdf-curl.vcxproj │ │ ├── mupdf-gl.vcxproj │ │ ├── mupdf.sln │ │ ├── mupdf.vcxproj │ │ ├── mupdfcpp.vcxproj │ │ ├── mupdfcpp.vcxproj.filters │ │ ├── mupdfcsharpswig.sln │ │ ├── mupdfcsharpswig.vcxproj │ │ ├── mupdfpyswig.sln │ │ ├── mupdfpyswig.vcxproj │ │ ├── muraster.vcxproj │ │ ├── mutool.vcxproj │ │ ├── sodochandler.vcxproj │ │ └── sodochandler.vcxproj.filters │ └── x11 │ │ ├── curl_stream.c │ │ ├── curl_stream.h │ │ ├── mupdf.ico │ │ ├── pdfapp.c │ │ ├── pdfapp.h │ │ ├── prog_stream.c │ │ ├── win_main.c │ │ ├── win_res.rc │ │ ├── x11_image.c │ │ └── x11_main.c ├── pyproject.toml ├── resources │ ├── README │ ├── certs │ │ └── AdobeCA.p7c │ ├── cmaps │ │ ├── 83pv-RKSJ-H │ │ ├── 90ms-RKSJ-H │ │ ├── 90ms-RKSJ-V │ │ ├── 90msp-RKSJ-H │ │ ├── 90msp-RKSJ-V │ │ ├── 90pv-RKSJ-H │ │ ├── Add-RKSJ-H │ │ ├── Add-RKSJ-V │ │ ├── Adobe-CNS1-UCS2 │ │ ├── Adobe-GB1-UCS2 │ │ ├── Adobe-Japan1-UCS2 │ │ ├── Adobe-Korea1-UCS2 │ │ ├── B5pc-H │ │ ├── B5pc-V │ │ ├── CNS-EUC-H │ │ ├── CNS-EUC-V │ │ ├── ETen-B5-H │ │ ├── ETen-B5-V │ │ ├── ETenms-B5-H │ │ ├── ETenms-B5-V │ │ ├── EUC-H │ │ ├── EUC-V │ │ ├── Ext-RKSJ-H │ │ ├── Ext-RKSJ-V │ │ ├── GB-EUC-H │ │ ├── GB-EUC-V │ │ ├── GBK-EUC-H │ │ ├── GBK-EUC-V │ │ ├── GBK-X │ │ ├── GBK2K-H │ │ ├── GBK2K-V │ │ ├── GBKp-EUC-H │ │ ├── GBKp-EUC-V │ │ ├── GBpc-EUC-H │ │ ├── GBpc-EUC-V │ │ ├── H │ │ ├── HKscs-B5-H │ │ ├── HKscs-B5-V │ │ ├── Identity-H │ │ ├── Identity-V │ │ ├── KSC-EUC-H │ │ ├── KSC-EUC-V │ │ ├── KSCms-UHC-H │ │ ├── KSCms-UHC-HW-H │ │ ├── KSCms-UHC-HW-V │ │ ├── KSCms-UHC-V │ │ ├── KSCpc-EUC-H │ │ ├── TrueType-UCS2 │ │ ├── UniCNS-UCS2-H │ │ ├── UniCNS-UCS2-V │ │ ├── UniCNS-UTF16-H │ │ ├── UniCNS-UTF16-V │ │ ├── UniCNS-X │ │ ├── UniGB-UCS2-H │ │ ├── UniGB-UCS2-V │ │ ├── UniGB-UTF16-H │ │ ├── UniGB-UTF16-V │ │ ├── UniGB-X │ │ ├── UniJIS-UCS2-H │ │ ├── UniJIS-UCS2-HW-H │ │ ├── UniJIS-UCS2-HW-V │ │ ├── UniJIS-UCS2-V │ │ ├── UniJIS-UTF16-H │ │ ├── UniJIS-UTF16-V │ │ ├── UniJIS-X │ │ ├── UniKS-UCS2-H │ │ ├── UniKS-UCS2-V │ │ ├── UniKS-UTF16-H │ │ ├── UniKS-UTF16-V │ │ ├── UniKS-X │ │ └── V │ ├── fonts │ │ ├── droid │ │ │ ├── DroidSansFallback.ttf │ │ │ ├── DroidSansFallbackFull.ttf │ │ │ └── NOTICE │ │ ├── han │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ └── SourceHanSerif-Regular.ttc │ │ ├── noto │ │ │ ├── COPYING │ │ │ ├── NotoEmoji-Regular.ttf │ │ │ ├── NotoMusic-Regular.otf │ │ │ ├── NotoNaskhArabic-Regular.otf │ │ │ ├── NotoNastaliqUrdu-Regular.otf │ │ │ ├── NotoSans-Regular.otf │ │ │ ├── NotoSansAdlam-Regular.otf │ │ │ ├── NotoSansAnatolianHieroglyphs-Regular.otf │ │ │ ├── NotoSansAvestan-Regular.otf │ │ │ ├── NotoSansBamum-Regular.otf │ │ │ ├── NotoSansBassaVah-Regular.otf │ │ │ ├── NotoSansBatak-Regular.otf │ │ │ ├── NotoSansBhaiksuki-Regular.otf │ │ │ ├── NotoSansBrahmi-Regular.otf │ │ │ ├── NotoSansBuginese-Regular.otf │ │ │ ├── NotoSansBuhid-Regular.otf │ │ │ ├── NotoSansCanadianAboriginal-Regular.otf │ │ │ ├── NotoSansCarian-Regular.otf │ │ │ ├── NotoSansCaucasianAlbanian-Regular.otf │ │ │ ├── NotoSansChakma-Regular.otf │ │ │ ├── NotoSansCham-Regular.otf │ │ │ ├── NotoSansCherokee-Regular.otf │ │ │ ├── NotoSansChorasmian-Regular.otf │ │ │ ├── NotoSansCoptic-Regular.otf │ │ │ ├── NotoSansCuneiform-Regular.otf │ │ │ ├── NotoSansCypriot-Regular.otf │ │ │ ├── NotoSansCyproMinoan-Regular.otf │ │ │ ├── NotoSansDeseret-Regular.otf │ │ │ ├── NotoSansDuployan-Regular.otf │ │ │ ├── NotoSansEgyptianHieroglyphs-Regular.otf │ │ │ ├── NotoSansElbasan-Regular.otf │ │ │ ├── NotoSansElymaic-Regular.otf │ │ │ ├── NotoSansGlagolitic-Regular.otf │ │ │ ├── NotoSansGothic-Regular.otf │ │ │ ├── NotoSansGunjalaGondi-Regular.otf │ │ │ ├── NotoSansHanifiRohingya-Regular.otf │ │ │ ├── NotoSansHanunoo-Regular.otf │ │ │ ├── NotoSansHatran-Regular.otf │ │ │ ├── NotoSansImperialAramaic-Regular.otf │ │ │ ├── NotoSansInscriptionalPahlavi-Regular.otf │ │ │ ├── NotoSansInscriptionalParthian-Regular.otf │ │ │ ├── NotoSansJavanese-Regular.otf │ │ │ ├── NotoSansKaithi-Regular.otf │ │ │ ├── NotoSansKawi-Regular.otf │ │ │ ├── NotoSansKayahLi-Regular.otf │ │ │ ├── NotoSansKharoshthi-Regular.otf │ │ │ ├── NotoSansKhudawadi-Regular.otf │ │ │ ├── NotoSansLepcha-Regular.otf │ │ │ ├── NotoSansLimbu-Regular.otf │ │ │ ├── NotoSansLinearA-Regular.otf │ │ │ ├── NotoSansLinearB-Regular.otf │ │ │ ├── NotoSansLisu-Regular.otf │ │ │ ├── NotoSansLycian-Regular.otf │ │ │ ├── NotoSansLydian-Regular.otf │ │ │ ├── NotoSansMahajani-Regular.otf │ │ │ ├── NotoSansMandaic-Regular.otf │ │ │ ├── NotoSansManichaean-Regular.otf │ │ │ ├── NotoSansMarchen-Regular.otf │ │ │ ├── NotoSansMasaramGondi-Regular.otf │ │ │ ├── NotoSansMath-Regular.otf │ │ │ ├── NotoSansMedefaidrin-Regular.otf │ │ │ ├── NotoSansMeeteiMayek-Regular.otf │ │ │ ├── NotoSansMendeKikakui-Regular.otf │ │ │ ├── NotoSansMeroitic-Regular.otf │ │ │ ├── NotoSansMiao-Regular.otf │ │ │ ├── NotoSansModi-Regular.otf │ │ │ ├── NotoSansMongolian-Regular.otf │ │ │ ├── NotoSansMro-Regular.otf │ │ │ ├── NotoSansMultani-Regular.otf │ │ │ ├── NotoSansNKo-Regular.otf │ │ │ ├── NotoSansNabataean-Regular.otf │ │ │ ├── NotoSansNagMundari-Regular.otf │ │ │ ├── NotoSansNandinagari-Regular.otf │ │ │ ├── NotoSansNewTaiLue-Regular.otf │ │ │ ├── NotoSansNewa-Regular.otf │ │ │ ├── NotoSansNushu-Regular.otf │ │ │ ├── NotoSansOgham-Regular.otf │ │ │ ├── NotoSansOlChiki-Regular.otf │ │ │ ├── NotoSansOldHungarian-Regular.otf │ │ │ ├── NotoSansOldItalic-Regular.otf │ │ │ ├── NotoSansOldNorthArabian-Regular.otf │ │ │ ├── NotoSansOldPermic-Regular.otf │ │ │ ├── NotoSansOldPersian-Regular.otf │ │ │ ├── NotoSansOldSogdian-Regular.otf │ │ │ ├── NotoSansOldSouthArabian-Regular.otf │ │ │ ├── NotoSansOldTurkic-Regular.otf │ │ │ ├── NotoSansOriya-Regular.otf │ │ │ ├── NotoSansOsage-Regular.otf │ │ │ ├── NotoSansOsmanya-Regular.otf │ │ │ ├── NotoSansPahawhHmong-Regular.otf │ │ │ ├── NotoSansPalmyrene-Regular.otf │ │ │ ├── NotoSansPauCinHau-Regular.otf │ │ │ ├── NotoSansPhagsPa-Regular.otf │ │ │ ├── NotoSansPhoenician-Regular.otf │ │ │ ├── NotoSansPsalterPahlavi-Regular.otf │ │ │ ├── NotoSansRejang-Regular.otf │ │ │ ├── NotoSansRunic-Regular.otf │ │ │ ├── NotoSansSamaritan-Regular.otf │ │ │ ├── NotoSansSaurashtra-Regular.otf │ │ │ ├── NotoSansSharada-Regular.otf │ │ │ ├── NotoSansShavian-Regular.otf │ │ │ ├── NotoSansSiddham-Regular.otf │ │ │ ├── NotoSansSignWriting-Regular.otf │ │ │ ├── NotoSansSogdian-Regular.otf │ │ │ ├── NotoSansSoraSompeng-Regular.otf │ │ │ ├── NotoSansSoyombo-Regular.otf │ │ │ ├── NotoSansSundanese-Regular.otf │ │ │ ├── NotoSansSylotiNagri-Regular.otf │ │ │ ├── NotoSansSymbols-Regular.otf │ │ │ ├── NotoSansSymbols2-Regular.otf │ │ │ ├── NotoSansSyriac-Regular.otf │ │ │ ├── NotoSansTagalog-Regular.otf │ │ │ ├── NotoSansTagbanwa-Regular.otf │ │ │ ├── NotoSansTaiLe-Regular.otf │ │ │ ├── NotoSansTaiTham-Regular.otf │ │ │ ├── NotoSansTaiViet-Regular.otf │ │ │ ├── NotoSansTakri-Regular.otf │ │ │ ├── NotoSansTangsa-Regular.otf │ │ │ ├── NotoSansThaana-Regular.otf │ │ │ ├── NotoSansTifinagh-Regular.otf │ │ │ ├── NotoSansTirhuta-Regular.otf │ │ │ ├── NotoSansUgaritic-Regular.otf │ │ │ ├── NotoSansVai-Regular.otf │ │ │ ├── NotoSansWancho-Regular.otf │ │ │ ├── NotoSansWarangCiti-Regular.otf │ │ │ ├── NotoSansYi-Regular.otf │ │ │ ├── NotoSansZanabazarSquare-Regular.otf │ │ │ ├── NotoSerif-Regular.otf │ │ │ ├── NotoSerifAhom-Regular.otf │ │ │ ├── NotoSerifArmenian-Regular.otf │ │ │ ├── NotoSerifBalinese-Regular.otf │ │ │ ├── NotoSerifBengali-Regular.otf │ │ │ ├── NotoSerifDevanagari-Regular.otf │ │ │ ├── NotoSerifDivesAkuru-Regular.otf │ │ │ ├── NotoSerifDogra-Regular.otf │ │ │ ├── NotoSerifEthiopic-Regular.otf │ │ │ ├── NotoSerifGeorgian-Regular.otf │ │ │ ├── NotoSerifGrantha-Regular.otf │ │ │ ├── NotoSerifGujarati-Regular.otf │ │ │ ├── NotoSerifGurmukhi-Regular.otf │ │ │ ├── NotoSerifHebrew-Regular.otf │ │ │ ├── NotoSerifKannada-Regular.otf │ │ │ ├── NotoSerifKhitanSmallScript-Regular.otf │ │ │ ├── NotoSerifKhmer-Regular.otf │ │ │ ├── NotoSerifKhojki-Regular.otf │ │ │ ├── NotoSerifLao-Regular.otf │ │ │ ├── NotoSerifMakasar-Regular.otf │ │ │ ├── NotoSerifMalayalam-Regular.otf │ │ │ ├── NotoSerifMyanmar-Regular.otf │ │ │ ├── NotoSerifNyiakengPuachueHmong-Regular.otf │ │ │ ├── NotoSerifOldUyghur-Regular.otf │ │ │ ├── NotoSerifOriya-Regular.otf │ │ │ ├── NotoSerifSinhala-Regular.otf │ │ │ ├── NotoSerifTamil-Regular.otf │ │ │ ├── NotoSerifTangut-Regular.otf │ │ │ ├── NotoSerifTelugu-Regular.otf │ │ │ ├── NotoSerifThai-Regular.otf │ │ │ ├── NotoSerifTibetan-Regular.otf │ │ │ ├── NotoSerifToto-Regular.otf │ │ │ ├── NotoSerifVithkuqi-Regular.otf │ │ │ └── NotoSerifYezidi-Regular.otf │ │ ├── sil │ │ │ ├── CharisSIL-5.000-developer │ │ │ │ └── sources │ │ │ │ │ ├── CharisSIL-B-designsource.otf │ │ │ │ │ ├── CharisSIL-BI-designsource.otf │ │ │ │ │ ├── CharisSIL-I-designsource.otf │ │ │ │ │ └── CharisSIL-R-designsource.otf │ │ │ ├── CharisSIL-Bold.cff │ │ │ ├── CharisSIL-BoldItalic.cff │ │ │ ├── CharisSIL-Italic.cff │ │ │ ├── CharisSIL.cff │ │ │ ├── OFL.txt │ │ │ ├── README.txt │ │ │ ├── subset.mes │ │ │ ├── subset.mes.sc │ │ │ ├── subset.secs │ │ │ ├── subset.secs.sc │ │ │ ├── subset.wgl │ │ │ ├── subset.wgl.sc │ │ │ └── tocff.sh │ │ └── urw │ │ │ ├── Dingbats.cff │ │ │ ├── NimbusBoxes-Regular.cff │ │ │ ├── NimbusMonoPS-Bold.cff │ │ │ ├── NimbusMonoPS-BoldItalic.cff │ │ │ ├── NimbusMonoPS-Italic.cff │ │ │ ├── NimbusMonoPS-Regular.cff │ │ │ ├── NimbusRoman-Bold.cff │ │ │ ├── NimbusRoman-BoldItalic.cff │ │ │ ├── NimbusRoman-Italic.cff │ │ │ ├── NimbusRoman-Regular.cff │ │ │ ├── NimbusSans-Bold.cff │ │ │ ├── NimbusSans-BoldItalic.cff │ │ │ ├── NimbusSans-Italic.cff │ │ │ ├── NimbusSans-Regular.cff │ │ │ ├── OFL.txt │ │ │ ├── StandardSymbolsPS.cff │ │ │ ├── input │ │ │ ├── Dingbats.afm │ │ │ ├── Dingbats.t1 │ │ │ ├── NimbusBoxes.t1 │ │ │ ├── NimbusMonoPS-Bold.afm │ │ │ ├── NimbusMonoPS-Bold.t1 │ │ │ ├── NimbusMonoPS-BoldItalic.afm │ │ │ ├── NimbusMonoPS-BoldItalic.t1 │ │ │ ├── NimbusMonoPS-Italic.afm │ │ │ ├── NimbusMonoPS-Italic.t1 │ │ │ ├── NimbusMonoPS-Regular.afm │ │ │ ├── NimbusMonoPS-Regular.t1 │ │ │ ├── NimbusRoman-Bold.afm │ │ │ ├── NimbusRoman-Bold.t1 │ │ │ ├── NimbusRoman-BoldItalic.afm │ │ │ ├── NimbusRoman-BoldItalic.t1 │ │ │ ├── NimbusRoman-Italic.afm │ │ │ ├── NimbusRoman-Italic.t1 │ │ │ ├── NimbusRoman-Regular.afm │ │ │ ├── NimbusRoman-Regular.t1 │ │ │ ├── NimbusSans-Bold.afm │ │ │ ├── NimbusSans-Bold.t1 │ │ │ ├── NimbusSans-BoldItalic.afm │ │ │ ├── NimbusSans-BoldItalic.t1 │ │ │ ├── NimbusSans-Italic.afm │ │ │ ├── NimbusSans-Italic.t1 │ │ │ ├── NimbusSans-Regular.afm │ │ │ ├── NimbusSans-Regular.t1 │ │ │ ├── StandardSymbolsPS.afm │ │ │ └── StandardSymbolsPS.t1 │ │ │ ├── subset.box │ │ │ ├── subset.mes │ │ │ ├── subset.secs │ │ │ ├── subset.wgl │ │ │ └── tocff.sh │ └── icc │ │ ├── cmyk.icc │ │ ├── gray.icc │ │ ├── lab.icc │ │ └── rgb.icc ├── scripts │ ├── 8859-1.TXT │ ├── 8859-7.TXT │ ├── CP1250.TXT │ ├── CP1251.TXT │ ├── CP1252.TXT │ ├── KOI8-U.TXT │ ├── MES-2.TXT │ ├── SECS.TXT │ ├── WGL4.TXT │ ├── archive.sh │ ├── bin2coff.c │ ├── build-docs-live.sh │ ├── build-docs-markdown.sh │ ├── build-docs.py │ ├── build-docs.sh │ ├── cmapclean.py │ ├── cmapcleanx.c │ ├── cmapcleanz.c │ ├── cmapdump.py │ ├── cmapflatten.py │ ├── cmapshare.py │ ├── copyblob.sh │ ├── customer.txt │ ├── destatic.sh │ ├── find-blanks.awk │ ├── find-try-return.awk │ ├── find-try-return.sh │ ├── findunused.sh │ ├── fontdump.nmake │ ├── freetype │ │ ├── slimftmodules.h │ │ └── slimftoptions.h │ ├── genucd.py │ ├── githooks │ │ └── pre-commit │ ├── gitsetup.sh │ ├── glyphdump.py │ ├── glyphlist.txt │ ├── hexdump.sh │ ├── jlib.py │ ├── jsdump.sed │ ├── jshell.sh │ ├── libjpeg │ │ └── jconfig.h │ ├── libresources.vcxproj.filters.template │ ├── libresources.vcxproj.template │ ├── makeencoding.py │ ├── makenoto.py │ ├── makesubset.py │ ├── mupdfwrap.py │ ├── mupdfwrap_gui.cs │ ├── mupdfwrap_gui.py │ ├── mupdfwrap_test.cpp │ ├── mupdfwrap_test.cs │ ├── mupdfwrap_test.py │ ├── mutool.py │ ├── mutool_draw.py │ ├── pdftohtml.sh │ ├── pipcl.py │ ├── release-test.make │ ├── restatic.sh │ ├── runcmapdump.sh │ ├── runcmapshare.sh │ ├── runfontdump.sh │ ├── runiccdump.sh │ ├── runjsdump.sh │ ├── syncdocs.sh │ ├── tesseract │ │ ├── endianness.h │ │ └── tesseract │ │ │ └── version.h │ ├── texglyphlist.txt │ ├── truetype_to_unicode.py │ ├── wdev.py │ ├── wrap │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── classes.py │ │ ├── cpp.py │ │ ├── csharp.py │ │ ├── make_cppyy.py │ │ ├── parse.py │ │ ├── python.py │ │ ├── rename.py │ │ ├── state.py │ │ ├── swig.py │ │ └── util.py │ └── zxing-cpp │ │ ├── Version.h │ │ ├── WriteBarcode.h │ │ └── eci_dedup.cpp ├── setup.py └── source │ ├── cbz │ ├── mucbz.c │ └── muimg.c │ ├── fitz │ ├── archive.c │ ├── barcode.cpp │ ├── bbox-device.c │ ├── bidi-imp.h │ ├── bidi-std.c │ ├── bidi.c │ ├── bitmap.c │ ├── brotli.c │ ├── buffer.c │ ├── color-fast.c │ ├── color-icc-create.c │ ├── color-imp.h │ ├── color-lcms.c │ ├── colorspace.c │ ├── compress.c │ ├── compressed-buffer.c │ ├── context-imp.h │ ├── context.c │ ├── crypt-aes.c │ ├── crypt-arc4.c │ ├── crypt-md5.c │ ├── crypt-sha2.c │ ├── deskew.c │ ├── deskew_c.h │ ├── deskew_neon.h │ ├── deskew_sse.h │ ├── device.c │ ├── directory.c │ ├── document-all.c │ ├── document.c │ ├── draw-affine.c │ ├── draw-blend.c │ ├── draw-device.c │ ├── draw-edge.c │ ├── draw-edgebuffer.c │ ├── draw-glyph.c │ ├── draw-imp.h │ ├── draw-mesh.c │ ├── draw-paint.c │ ├── draw-path.c │ ├── draw-rasterize.c │ ├── draw-scale-simple.c │ ├── draw-unpack.c │ ├── encode-basic.c │ ├── encode-fax.c │ ├── encode-jpx.c │ ├── encodings.c │ ├── encodings.h │ ├── error.c │ ├── filter-basic.c │ ├── filter-brotli.c │ ├── filter-dct.c │ ├── filter-fax.c │ ├── filter-flate.c │ ├── filter-jbig2.c │ ├── filter-leech.c │ ├── filter-lzw.c │ ├── filter-predict.c │ ├── filter-sgi.c │ ├── filter-thunder.c │ ├── font-table.h │ ├── font.c │ ├── ftoa.c │ ├── geometry.c │ ├── getopt.c │ ├── glyph-imp.h │ ├── glyph.c │ ├── glyphbox.c │ ├── glyphbox.h │ ├── glyphlist.h │ ├── gz-doc.c │ ├── halftone.c │ ├── harfbuzz.c │ ├── hash.c │ ├── heap.c │ ├── icc │ │ ├── cmyk.icc.h │ │ ├── gray.icc.h │ │ ├── lab.icc.h │ │ └── rgb.icc.h │ ├── icc34.h │ ├── image-imp.h │ ├── image.c │ ├── jmemcust.c │ ├── jmemcust.h │ ├── json.c │ ├── leptonica-wrap.c │ ├── leptonica-wrap.h │ ├── link.c │ ├── list-device.c │ ├── load-bmp.c │ ├── load-gif.c │ ├── load-jbig2.c │ ├── load-jpeg.c │ ├── load-jpx.c │ ├── load-jxr-win.c │ ├── load-jxr.c │ ├── load-png.c │ ├── load-pnm.c │ ├── load-psd.c │ ├── load-tiff.c │ ├── log.c │ ├── memento.c │ ├── memory.c │ ├── noto.c │ ├── ocr-device.c │ ├── outline.c │ ├── output-cbz.c │ ├── output-csv.c │ ├── output-docx.c │ ├── output-jpeg.c │ ├── output-pcl.c │ ├── output-pclm.c │ ├── output-pdfocr.c │ ├── output-png.c │ ├── output-pnm.c │ ├── output-ps.c │ ├── output-psd.c │ ├── output-pwg.c │ ├── output-svg.c │ ├── output.c │ ├── paint-glyph.h │ ├── path.c │ ├── pixmap-imp.h │ ├── pixmap.c │ ├── pool.c │ ├── printf.c │ ├── random.c │ ├── separation.c │ ├── shade.c │ ├── skew.c │ ├── smallcaps.h │ ├── stext-boxer.c │ ├── stext-device.c │ ├── stext-output.c │ ├── stext-para.c │ ├── stext-search.c │ ├── stext-table.c │ ├── store.c │ ├── stream-open.c │ ├── stream-read.c │ ├── string.c │ ├── strtof.c │ ├── subset-cff.c │ ├── subset-ttf.c │ ├── svg-device.c │ ├── tessocr.cpp │ ├── tessocr.h │ ├── test-device.c │ ├── text-decoder.c │ ├── text.c │ ├── time.c │ ├── trace-device.c │ ├── track-usage.c │ ├── transition.c │ ├── tree.c │ ├── ucdn.c │ ├── ucdn_db.h │ ├── uncfb.c │ ├── unlibarchive.c │ ├── untar.c │ ├── unzip.c │ ├── utfdata.h │ ├── util.c │ ├── warp.c │ ├── writer.c │ ├── xml-imp.h │ ├── xml-write.c │ ├── xml.c │ ├── xmltext-device.c │ ├── z-imp.h │ └── zip.c │ ├── helpers │ ├── dummy.c │ ├── mu-office-lib │ │ └── mu-office-lib.c │ ├── mu-threads │ │ └── mu-threads.c │ └── pkcs7 │ │ └── pkcs7-openssl.c │ ├── html │ ├── css-apply.c │ ├── css-parse.c │ ├── css-properties.gperf │ ├── css-properties.h │ ├── epub-doc.c │ ├── html-doc.c │ ├── html-font.c │ ├── html-imp.h │ ├── html-layout.c │ ├── html-outline.c │ ├── html-parse.c │ ├── mobi.c │ ├── office.c │ ├── story-writer.c │ ├── txt.c │ └── xml-dom.c │ ├── pdf │ ├── annotation-icons.h │ ├── cmaps │ │ ├── 83pv-RKSJ-H.h │ │ ├── 90ms-RKSJ-H.h │ │ ├── 90ms-RKSJ-V.h │ │ ├── 90msp-RKSJ-H.h │ │ ├── 90msp-RKSJ-V.h │ │ ├── 90pv-RKSJ-H.h │ │ ├── Add-RKSJ-H.h │ │ ├── Add-RKSJ-V.h │ │ ├── Adobe-CNS1-UCS2.h │ │ ├── Adobe-GB1-UCS2.h │ │ ├── Adobe-Japan1-UCS2.h │ │ ├── Adobe-Korea1-UCS2.h │ │ ├── B5pc-H.h │ │ ├── B5pc-V.h │ │ ├── CNS-EUC-H.h │ │ ├── CNS-EUC-V.h │ │ ├── ETen-B5-H.h │ │ ├── ETen-B5-V.h │ │ ├── ETenms-B5-H.h │ │ ├── ETenms-B5-V.h │ │ ├── EUC-H.h │ │ ├── EUC-V.h │ │ ├── Ext-RKSJ-H.h │ │ ├── Ext-RKSJ-V.h │ │ ├── GB-EUC-H.h │ │ ├── GB-EUC-V.h │ │ ├── GBK-EUC-H.h │ │ ├── GBK-EUC-V.h │ │ ├── GBK-X.h │ │ ├── GBK2K-H.h │ │ ├── GBK2K-V.h │ │ ├── GBKp-EUC-H.h │ │ ├── GBKp-EUC-V.h │ │ ├── GBpc-EUC-H.h │ │ ├── GBpc-EUC-V.h │ │ ├── H.h │ │ ├── HKscs-B5-H.h │ │ ├── HKscs-B5-V.h │ │ ├── Identity-H.h │ │ ├── Identity-V.h │ │ ├── KSC-EUC-H.h │ │ ├── KSC-EUC-V.h │ │ ├── KSCms-UHC-H.h │ │ ├── KSCms-UHC-HW-H.h │ │ ├── KSCms-UHC-HW-V.h │ │ ├── KSCms-UHC-V.h │ │ ├── KSCpc-EUC-H.h │ │ ├── TrueType-UCS2.h │ │ ├── UniCNS-UCS2-H.h │ │ ├── UniCNS-UCS2-V.h │ │ ├── UniCNS-UTF16-H.h │ │ ├── UniCNS-UTF16-V.h │ │ ├── UniCNS-X.h │ │ ├── UniGB-UCS2-H.h │ │ ├── UniGB-UCS2-V.h │ │ ├── UniGB-UTF16-H.h │ │ ├── UniGB-UTF16-V.h │ │ ├── UniGB-X.h │ │ ├── UniJIS-UCS2-H.h │ │ ├── UniJIS-UCS2-HW-H.h │ │ ├── UniJIS-UCS2-HW-V.h │ │ ├── UniJIS-UCS2-V.h │ │ ├── UniJIS-UTF16-H.h │ │ ├── UniJIS-UTF16-V.h │ │ ├── UniJIS-X.h │ │ ├── UniKS-UCS2-H.h │ │ ├── UniKS-UCS2-V.h │ │ ├── UniKS-UTF16-H.h │ │ ├── UniKS-UTF16-V.h │ │ ├── UniKS-X.h │ │ └── V.h │ ├── js │ │ ├── util.js │ │ └── util.js.h │ ├── pdf-af.c │ ├── pdf-annot-imp.h │ ├── pdf-annot.c │ ├── pdf-appearance.c │ ├── pdf-clean-file.c │ ├── pdf-clean.c │ ├── pdf-cmap-load.c │ ├── pdf-cmap-parse.c │ ├── pdf-cmap.c │ ├── pdf-colorspace.c │ ├── pdf-crypt.c │ ├── pdf-device.c │ ├── pdf-event.c │ ├── pdf-font-add.c │ ├── pdf-font.c │ ├── pdf-form.c │ ├── pdf-function.c │ ├── pdf-graft.c │ ├── pdf-image-rewriter.c │ ├── pdf-image.c │ ├── pdf-imp.h │ ├── pdf-interpret.c │ ├── pdf-js.c │ ├── pdf-label.c │ ├── pdf-layer.c │ ├── pdf-layout.c │ ├── pdf-lex.c │ ├── pdf-link.c │ ├── pdf-metrics.c │ ├── pdf-nametree.c │ ├── pdf-object.c │ ├── pdf-op-buffer.c │ ├── pdf-op-color.c │ ├── pdf-op-filter.c │ ├── pdf-op-run.c │ ├── pdf-outline.c │ ├── pdf-page.c │ ├── pdf-parse.c │ ├── pdf-pattern.c │ ├── pdf-recolor.c │ ├── pdf-repair.c │ ├── pdf-resources.c │ ├── pdf-run.c │ ├── pdf-shade-recolor.c │ ├── pdf-shade.c │ ├── pdf-signature.c │ ├── pdf-store.c │ ├── pdf-stream.c │ ├── pdf-subset.c │ ├── pdf-type3.c │ ├── pdf-unicode.c │ ├── pdf-util.c │ ├── pdf-write.c │ ├── pdf-xobject.c │ ├── pdf-xref.c │ └── pdf-zugferd.c │ ├── reflow │ └── reflow-doc.c │ ├── svg │ ├── svg-color.c │ ├── svg-doc.c │ ├── svg-imp.h │ ├── svg-parse.c │ └── svg-run.c │ ├── tests │ └── mu-office-test.c │ ├── tools │ ├── cmapdump.c │ ├── mubar.c │ ├── muconvert.c │ ├── mudraw.c │ ├── muraster.c │ ├── murun.c │ ├── mutool.c │ ├── mutrace.c │ ├── pdfaudit.c │ ├── pdfbake.c │ ├── pdfclean.c │ ├── pdfcreate.c │ ├── pdfextract.c │ ├── pdfinfo.c │ ├── pdfmerge.c │ ├── pdfpages.c │ ├── pdfposter.c │ ├── pdfrecolor.c │ ├── pdfshow.c │ ├── pdfsign.c │ └── pdftrim.c │ └── xps │ ├── xps-common.c │ ├── xps-doc.c │ ├── xps-glyphs.c │ ├── xps-gradient.c │ ├── xps-image.c │ ├── xps-imp.h │ ├── xps-link.c │ ├── xps-outline.c │ ├── xps-path.c │ ├── xps-resource.c │ ├── xps-tile.c │ ├── xps-util.c │ └── xps-zip.c ├── packages └── Microsoft.Web.WebView2.1.0.992.28 │ ├── .signature.p7s │ ├── LICENSE.txt │ ├── Microsoft.Web.WebView2.1.0.992.28.nupkg │ ├── WebView2.idl │ ├── WebView2.tlb │ ├── build │ ├── Common.targets │ ├── Microsoft.Web.WebView2.targets │ └── native │ │ ├── Microsoft.Web.WebView2.targets │ │ ├── arm64 │ │ ├── WebView2Loader.dll │ │ ├── WebView2Loader.dll.lib │ │ └── WebView2LoaderStatic.lib │ │ ├── include-winrt │ │ ├── WebView2Interop.h │ │ ├── WebView2Interop.idl │ │ └── WebView2Interop.tlb │ │ ├── include │ │ ├── WebView2.h │ │ └── WebView2EnvironmentOptions.h │ │ ├── x64 │ │ ├── WebView2Loader.dll │ │ ├── WebView2Loader.dll.lib │ │ └── WebView2LoaderStatic.lib │ │ └── x86 │ │ ├── WebView2Loader.dll │ │ ├── WebView2Loader.dll.lib │ │ └── WebView2LoaderStatic.lib │ ├── lib │ ├── Microsoft.Web.WebView2.Core.winmd │ ├── net45 │ │ ├── Microsoft.Web.WebView2.Core.dll │ │ ├── Microsoft.Web.WebView2.Core.xml │ │ ├── Microsoft.Web.WebView2.WinForms.dll │ │ ├── Microsoft.Web.WebView2.WinForms.xml │ │ ├── Microsoft.Web.WebView2.Wpf.dll │ │ └── Microsoft.Web.WebView2.Wpf.xml │ └── netcoreapp3.0 │ │ ├── Microsoft.Web.WebView2.Core.dll │ │ ├── Microsoft.Web.WebView2.Core.xml │ │ ├── Microsoft.Web.WebView2.WinForms.dll │ │ ├── Microsoft.Web.WebView2.WinForms.xml │ │ ├── Microsoft.Web.WebView2.Wpf.dll │ │ └── Microsoft.Web.WebView2.Wpf.xml │ ├── runtimes │ ├── win-arm64 │ │ ├── native │ │ │ └── WebView2Loader.dll │ │ └── native_uap │ │ │ └── Microsoft.Web.WebView2.Core.dll │ ├── win-x64 │ │ ├── native │ │ │ └── WebView2Loader.dll │ │ └── native_uap │ │ │ └── Microsoft.Web.WebView2.Core.dll │ └── win-x86 │ │ ├── native │ │ └── WebView2Loader.dll │ │ └── native_uap │ │ └── Microsoft.Web.WebView2.Core.dll │ └── tools │ └── VisualStudioToolsManifest.xml ├── premake5.files.lua ├── premake5.lua ├── premake5.obsolete.lua ├── readme.md ├── src ├── Accelerators.cpp ├── Accelerators.h ├── Annotation.cpp ├── Annotation.h ├── AppColors.cpp ├── AppColors.h ├── AppSettings.cpp ├── AppSettings.h ├── AppTools.cpp ├── AppTools.h ├── Canvas.cpp ├── Canvas.h ├── CanvasAboutUI.cpp ├── Caption.cpp ├── Caption.h ├── ChmFile.cpp ├── ChmFile.h ├── ChmModel.cpp ├── ChmModel.h ├── CommandPalette.cpp ├── CommandPalette.h ├── Commands.cpp ├── Commands.h ├── CrashHandler.cpp ├── CrashHandler.h ├── CrashHandlerNoOp.cpp ├── DisplayMode.cpp ├── DisplayMode.h ├── DisplayModel.cpp ├── DisplayModel.h ├── DocController.h ├── DocProperties.cpp ├── DocProperties.h ├── EbookBase.h ├── EbookDoc.cpp ├── EbookDoc.h ├── EbookFormatter.cpp ├── EbookFormatter.h ├── EditAnnotations.cpp ├── EditAnnotations.h ├── EngineAll.h ├── EngineBase.cpp ├── EngineBase.h ├── EngineCreate.cpp ├── EngineDjVu.cpp ├── EngineDump.cpp ├── EngineEbook.cpp ├── EngineImages.cpp ├── EngineMupdf.cpp ├── EngineMupdf.h ├── EnginePs.cpp ├── ExternalViewers.cpp ├── ExternalViewers.h ├── Favorites.cpp ├── Favorites.h ├── FileHistory.cpp ├── FileHistory.h ├── FileThumbnails.cpp ├── FileThumbnails.h ├── Flags.cpp ├── Flags.h ├── FzImgReader.cpp ├── FzImgReader.h ├── GlobalPrefs.cpp ├── GlobalPrefs.h ├── HomePage.cpp ├── HomePage.h ├── HtmlFormatter.cpp ├── HtmlFormatter.h ├── Installer.cpp ├── Installer.h ├── InstallerCommon.cpp ├── MainWindow.cpp ├── MainWindow.h ├── Menu.cpp ├── Menu.h ├── MobiDoc.cpp ├── MobiDoc.h ├── MuPDF_Exports.cpp ├── Notifications.cpp ├── Notifications.h ├── PalmDbReader.cpp ├── PalmDbReader.h ├── PdfCreator.cpp ├── PdfCreator.h ├── PdfSync.cpp ├── PdfSync.h ├── Print.cpp ├── Print.h ├── ProgressUpdateUI.h ├── RegistryInstaller.cpp ├── RegistryPreview.cpp ├── RegistryPreview.h ├── RegistrySearchFilter.cpp ├── RegistrySearchFilter.h ├── RenderCache.cpp ├── RenderCache.h ├── Scratch.cpp ├── Scratch.h ├── SearchAndDDE.cpp ├── SearchAndDDE.h ├── Selection.cpp ├── Selection.h ├── Settings.h ├── SimpleBrowserWindow.cpp ├── SimpleBrowserWindow.h ├── StressTesting.cpp ├── StressTesting.h ├── SumatraConfig.cpp ├── SumatraConfig.h ├── SumatraDialogs.cpp ├── SumatraDialogs.h ├── SumatraPDF.cpp ├── SumatraPDF.exe.manifest ├── SumatraPDF.h ├── SumatraPDF.rc ├── SumatraProperties.cpp ├── SumatraProperties.h ├── SumatraStartup.cpp ├── SumatraUnitTests.cpp ├── SvgIcons.cpp ├── SvgIcons.h ├── TableOfContents.cpp ├── TableOfContents.h ├── Tabs.cpp ├── Tabs.h ├── Tester.cpp ├── Tests.cpp ├── Tests.h ├── TextSearch.cpp ├── TextSearch.h ├── TextSelection.cpp ├── TextSelection.h ├── Theme.cpp ├── Theme.h ├── Toolbar.cpp ├── Toolbar.h ├── TranslationLangs.cpp ├── Translations.cpp ├── Translations.h ├── Uninstaller.cpp ├── UpdateCheck.cpp ├── UpdateCheck.h ├── Version.h ├── WindowTab.cpp ├── WindowTab.h ├── dragcursor.cur ├── ifilter │ ├── EpubFilter.cpp │ ├── EpubFilter.h │ ├── FilterBase.h │ ├── PdfFilter.cpp │ ├── PdfFilter.h │ ├── PdfFilter.rc │ ├── SearchFilterDll.cpp │ ├── TeXFilter.cpp │ └── TeXFilter.h ├── libmupdf.def ├── libmupdf.rc ├── mui │ ├── Mui.cpp │ ├── Mui.h │ ├── TextRender.cpp │ └── TextRender.h ├── no_op_console.c ├── no_op_for_premake.cpp ├── nsWindowsDllInterceptor.h ├── previewer │ ├── PdfPreview.cpp │ ├── PdfPreview.rc │ ├── PdfPreviewBase.h │ └── PdfPreviewDll.cpp ├── regress │ ├── Regress.cpp │ ├── Regress00.cpp │ ├── Regress03.cpp │ └── Regress03.h ├── reloading.bmp ├── resource.h ├── sample_mobi.html ├── scratch.txt ├── testcode │ ├── TestApp.cpp │ ├── TestLayout.cpp │ ├── TestTab.cpp │ ├── test-app.cpp │ └── test-app.h ├── tools │ ├── MakeLzSA.cpp │ ├── plugin-test.cpp │ ├── preview_test.cpp │ ├── signfile.cpp │ └── test_util.cpp ├── uia │ ├── Constants.h │ ├── DocumentProvider.cpp │ ├── DocumentProvider.h │ ├── PageProvider.cpp │ ├── PageProvider.h │ ├── Provider.cpp │ ├── Provider.h │ ├── StartPageProvider.cpp │ ├── StartPageProvider.h │ ├── TextRange.cpp │ └── TextRange.h ├── utils │ ├── Archive.cpp │ ├── Archive.h │ ├── AvifReader.cpp │ ├── AvifReader.h │ ├── BaseUtil.cpp │ ├── BaseUtil.h │ ├── BitManip.h │ ├── BitReader.cpp │ ├── BitReader.h │ ├── BuildConfig.h │ ├── BuildConfig_default.h │ ├── ByteOrderDecoder.cpp │ ├── ByteOrderDecoder.h │ ├── ByteReader.cpp │ ├── ByteReader.h │ ├── ByteWriter.cpp │ ├── ByteWriter.h │ ├── CmdLineArgsIter.cpp │ ├── CmdLineArgsIter.h │ ├── ColorUtil.cpp │ ├── ColorUtil.h │ ├── CryptoUtil.cpp │ ├── CryptoUtil.h │ ├── CssParser.cpp │ ├── CssParser.h │ ├── DbgHelpDyn.cpp │ ├── DbgHelpDyn.h │ ├── Dict.cpp │ ├── Dict.h │ ├── DirIter.cpp │ ├── DirIter.h │ ├── Dpi.cpp │ ├── Dpi.h │ ├── FileUtil.cpp │ ├── FileUtil.h │ ├── FileWatcher.cpp │ ├── FileWatcher.h │ ├── FrameTimeoutCalculator.h │ ├── GdiPlusUtil.cpp │ ├── GdiPlusUtil.h │ ├── GeomUtil.cpp │ ├── GeomUtil.h │ ├── GuessFileType.cpp │ ├── GuessFileType.h │ ├── HtmlParseTest00.html │ ├── HtmlParserLookup.cpp │ ├── HtmlParserLookup.h │ ├── HtmlPrettyPrint.cpp │ ├── HtmlPrettyPrint.h │ ├── HtmlPullParser.cpp │ ├── HtmlPullParser.h │ ├── HttpUtil.cpp │ ├── HttpUtil.h │ ├── JsonParser.cpp │ ├── JsonParser.h │ ├── Log.cpp │ ├── Log.h │ ├── LzmaSimpleArchive.cpp │ ├── LzmaSimpleArchive.h │ ├── Scoped.h │ ├── ScopedWin.h │ ├── SettingsUtil.cpp │ ├── SettingsUtil.h │ ├── SquareTreeParser.cpp │ ├── SquareTreeParser.h │ ├── StrFormat.cpp │ ├── StrFormat.h │ ├── StrQueue.cpp │ ├── StrQueue.h │ ├── StrUtil.cpp │ ├── StrUtil.h │ ├── StrVec.cpp │ ├── StrVec.h │ ├── StrconvUtil.cpp │ ├── StrconvUtil.h │ ├── TempAllocator.cpp │ ├── TempAllocator.h │ ├── TgaReader.cpp │ ├── TgaReader.h │ ├── ThreadUtil.cpp │ ├── ThreadUtil.h │ ├── Timer.h │ ├── TrivialHtmlParser.cpp │ ├── TrivialHtmlParser.h │ ├── UITask.cpp │ ├── UITask.h │ ├── UtAssert.cpp │ ├── UtAssert.h │ ├── Vec.h │ ├── VecSegmented.h │ ├── WebpReader.cpp │ ├── WebpReader.h │ ├── WinDynCalls.cpp │ ├── WinDynCalls.h │ ├── WinUtil.cpp │ ├── WinUtil.h │ ├── ZipUtil.cpp │ ├── ZipUtil.h │ ├── tests │ │ ├── BaseUtil_ut.cpp │ │ ├── ByteOrderDecoder_ut.cpp │ │ ├── CryptoUtil_ut.cpp │ │ ├── CssParser_ut.cpp │ │ ├── Dict_ut.cpp │ │ ├── FileUtil_ut.cpp │ │ ├── HtmlPrettyPrint_ut.cpp │ │ ├── HtmlPullParser_ut.cpp │ │ ├── JsonParser_ut.cpp │ │ ├── SettingsUtil_ut.cpp │ │ ├── SimpleLog_ut.cpp │ │ ├── SquareTreeParser_ut.cpp │ │ ├── StrFormat_ut.cpp │ │ ├── StrUtil_ut.cpp │ │ ├── StrVec_ut.cpp │ │ ├── TrivialHtmlParser_ut.cpp │ │ ├── Vec_ut.cpp │ │ └── WinUtil_ut.cpp │ ├── windrawlib.cpp │ └── windrawlib.h └── wingui │ ├── DialogSizer.cpp │ ├── DialogSizer.h │ ├── FrameRateWnd.cpp │ ├── FrameRateWnd.h │ ├── HtmlWindow.cpp │ ├── HtmlWindow.h │ ├── LabelWithCloseWnd.cpp │ ├── LabelWithCloseWnd.h │ ├── Layout.cpp │ ├── Layout.h │ ├── New Text Document.txt │ ├── UIModels.cpp │ ├── UIModels.h │ ├── VirtWnd.cpp │ ├── VirtWnd.h │ ├── WebView.cpp │ ├── WebView.h │ ├── WinGui.cpp │ └── WinGui.h ├── tools ├── bin2coff.c ├── efi │ ├── Dia2Subset.h │ ├── Util.cpp │ ├── Util.h │ ├── efiparse.py │ ├── main.cpp │ └── readme.txt ├── logview-cli │ ├── go.mod │ ├── go.sum │ └── logview.go ├── logview-web │ ├── .gitignore │ ├── bun.lock │ ├── dist │ │ └── .gitkeep │ ├── doit.bat │ ├── go.mod │ ├── go.sum │ ├── index.html │ ├── jsconfig.json │ ├── main.go │ ├── package.json │ ├── public │ │ └── .gitkeep │ ├── server │ │ ├── handle_pipe.go │ │ ├── log.go │ │ ├── main.go │ │ ├── server.go │ │ └── util.go │ ├── src │ │ ├── App.svelte │ │ ├── main.js │ │ ├── mini-tailwind.css │ │ ├── style.css │ │ └── version.js │ ├── vite-env.d.ts │ └── vite.config.js ├── logview │ ├── .gitignore │ ├── README.md │ ├── app.go │ ├── build │ │ ├── README.md │ │ ├── appicon.png │ │ ├── darwin │ │ │ ├── Info.dev.plist │ │ │ └── Info.plist │ │ └── windows │ │ │ ├── icon.ico │ │ │ ├── info.json │ │ │ ├── installer │ │ │ ├── project.nsi │ │ │ └── wails_tools.nsh │ │ │ └── wails.exe.manifest │ ├── frontend │ │ ├── .vscode │ │ │ └── extensions.json │ │ ├── README.md │ │ ├── index.html │ │ ├── jsconfig.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── package.json.md5 │ │ ├── src │ │ │ ├── App.svelte │ │ │ ├── main.js │ │ │ ├── style.css │ │ │ ├── version.js │ │ │ └── vite-env.d.ts │ │ ├── vite.config.js │ │ └── wailsjs │ │ │ ├── go │ │ │ └── main │ │ │ │ ├── App.d.ts │ │ │ │ └── App.js │ │ │ └── runtime │ │ │ ├── package.json │ │ │ ├── runtime.d.ts │ │ │ └── runtime.js │ ├── go.mod │ ├── go.sum │ ├── handle_pipe.go │ ├── main.go │ └── wails.json ├── pdfjs │ ├── .gitignore │ ├── dump_annots.js │ └── package.json ├── regress │ ├── go.mod │ ├── main.go │ └── tests.txt ├── sizer │ ├── debuginfo.cpp │ ├── debuginfo.hpp │ ├── main.cpp │ ├── parg.c │ ├── parg.h │ ├── pdbfile.cpp │ ├── pdbfile.hpp │ └── types.hpp └── test_sort.go ├── translations ├── translations-good.txt └── translations.txt └── vs2022 ├── MakeLZSA.sln ├── MakeLZSA.vcxproj ├── MakeLZSA.vcxproj.filters ├── PdfFilter.vcxproj ├── PdfFilter.vcxproj.filters ├── PdfPreview.vcxproj ├── PdfPreview.vcxproj.filters ├── PdfPreviewTest.vcxproj ├── PdfPreviewTest.vcxproj.filters ├── SumatraPDF-dll.vcxproj ├── SumatraPDF-dll.vcxproj.filters ├── SumatraPDF.sln ├── SumatraPDF.vcxproj ├── SumatraPDF.vcxproj.filters ├── bin2coff.vcxproj ├── chm.vcxproj ├── dav1d.vcxproj ├── dav1d.vcxproj.filters ├── enginedump.vcxproj ├── enginedump.vcxproj.filters ├── engines.vcxproj ├── libdjvu.vcxproj ├── libheif.vcxproj ├── libmupdf.vcxproj ├── libwebp.vcxproj ├── libwebp.vcxproj.filters ├── logview.vcxproj ├── logview.vcxproj.filters ├── mupdf-libs.vcxproj ├── mupdf-libs.vcxproj.filters ├── mupdf.vcxproj ├── mupdf.vcxproj.filters ├── plugin-test.vcxproj ├── plugin-test.vcxproj.filters ├── signfile.vcxproj ├── signfile.vcxproj.filters ├── sizer.vcxproj ├── sizer.vcxproj.filters ├── test_util.vcxproj ├── test_util.vcxproj.filters ├── unarrlib.vcxproj ├── unarrlib.vcxproj.filters ├── unrar.vcxproj ├── utils.vcxproj ├── zlib-ng.vcxproj ├── zlib-ng.vcxproj.filters └── zlib.vcxproj /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Disable LF normalization for all files 2 | * -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/AUTHORS -------------------------------------------------------------------------------- /BACKERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/BACKERS.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/COPYING.BSD -------------------------------------------------------------------------------- /TRANSLATORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/TRANSLATORS -------------------------------------------------------------------------------- /appx/fileicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/appx/fileicon.png -------------------------------------------------------------------------------- /asan.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/asan.supp -------------------------------------------------------------------------------- /bin/MakeLZSA.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/bin/MakeLZSA.exe -------------------------------------------------------------------------------- /bin/bin2coff.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/bin/bin2coff.exe -------------------------------------------------------------------------------- /bin/efi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/bin/efi.exe -------------------------------------------------------------------------------- /bin/lzma.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/bin/lzma.exe -------------------------------------------------------------------------------- /bin/nasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/bin/nasm.exe -------------------------------------------------------------------------------- /bin/pigz.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/bin/pigz.exe -------------------------------------------------------------------------------- /bin/premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/bin/premake5.exe -------------------------------------------------------------------------------- /do/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/build.go -------------------------------------------------------------------------------- /do/check_accesskyes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/check_accesskyes.go -------------------------------------------------------------------------------- /do/compress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/compress.go -------------------------------------------------------------------------------- /do/gen_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/gen_docs.go -------------------------------------------------------------------------------- /do/gen_docs.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/gen_docs.search.js -------------------------------------------------------------------------------- /do/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/git.go -------------------------------------------------------------------------------- /do/github_ci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/github_ci.go -------------------------------------------------------------------------------- /do/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/main.go -------------------------------------------------------------------------------- /do/scripts/reftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/scripts/reftest.py -------------------------------------------------------------------------------- /do/settings_gen_def.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/settings_gen_def.go -------------------------------------------------------------------------------- /do/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/sign.go -------------------------------------------------------------------------------- /do/trans_download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/trans_download.go -------------------------------------------------------------------------------- /do/trans_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/trans_gen.go -------------------------------------------------------------------------------- /do/trans_langs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/trans_langs.go -------------------------------------------------------------------------------- /do/translations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/translations.go -------------------------------------------------------------------------------- /do/upload_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/upload_storage.go -------------------------------------------------------------------------------- /do/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/util.go -------------------------------------------------------------------------------- /do/vs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/vs.go -------------------------------------------------------------------------------- /do/wc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/do/wc.go -------------------------------------------------------------------------------- /docs/manual.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/manual.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/docs/manual.tmpl.html -------------------------------------------------------------------------------- /docs/md/.obsidian/app.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /docs/md/.obsidian/appearance.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /docs/md/Commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/docs/md/Commands.md -------------------------------------------------------------------------------- /docs/md/Logview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/docs/md/Logview.md -------------------------------------------------------------------------------- /docs/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/docs/notes.txt -------------------------------------------------------------------------------- /docs/releasenotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/docs/releasenotes.txt -------------------------------------------------------------------------------- /docs/wishlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/docs/wishlist.txt -------------------------------------------------------------------------------- /docs/www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/docs/www/favicon.ico -------------------------------------------------------------------------------- /docs/www/gen_toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/docs/www/gen_toc.js -------------------------------------------------------------------------------- /docs/www/notion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/docs/www/notion.css -------------------------------------------------------------------------------- /docs/www/sumatra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/docs/www/sumatra.css -------------------------------------------------------------------------------- /doit.bat: -------------------------------------------------------------------------------- 1 | go run . %* 2 | -------------------------------------------------------------------------------- /doit.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | go run . "$@" 4 | -------------------------------------------------------------------------------- /drmem-sup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/drmem-sup.txt -------------------------------------------------------------------------------- /ext/CHMLib/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/CHMLib/AUTHORS -------------------------------------------------------------------------------- /ext/CHMLib/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/CHMLib/COPYING -------------------------------------------------------------------------------- /ext/CHMLib/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/CHMLib/NEWS -------------------------------------------------------------------------------- /ext/CHMLib/NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/CHMLib/NOTES -------------------------------------------------------------------------------- /ext/CHMLib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/CHMLib/README -------------------------------------------------------------------------------- /ext/CHMLib/chm_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/CHMLib/chm_lib.c -------------------------------------------------------------------------------- /ext/CHMLib/chm_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/CHMLib/chm_lib.h -------------------------------------------------------------------------------- /ext/CHMLib/lzx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/CHMLib/lzx.c -------------------------------------------------------------------------------- /ext/CHMLib/lzx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/CHMLib/lzx.h -------------------------------------------------------------------------------- /ext/bzip2/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/CHANGES -------------------------------------------------------------------------------- /ext/bzip2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/LICENSE -------------------------------------------------------------------------------- /ext/bzip2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/Makefile -------------------------------------------------------------------------------- /ext/bzip2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/README -------------------------------------------------------------------------------- /ext/bzip2/blocksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/blocksort.c -------------------------------------------------------------------------------- /ext/bzip2/bz-fo.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/bz-fo.xsl -------------------------------------------------------------------------------- /ext/bzip2/bz-html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/bz-html.xsl -------------------------------------------------------------------------------- /ext/bzip2/bzdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/bzdiff -------------------------------------------------------------------------------- /ext/bzip2/bzdiff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/bzdiff.1 -------------------------------------------------------------------------------- /ext/bzip2/bzgrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/bzgrep -------------------------------------------------------------------------------- /ext/bzip2/bzgrep.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/bzgrep.1 -------------------------------------------------------------------------------- /ext/bzip2/bzip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/bzip.css -------------------------------------------------------------------------------- /ext/bzip2/bzip2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/bzip2.1 -------------------------------------------------------------------------------- /ext/bzip2/bzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/bzip2.c -------------------------------------------------------------------------------- /ext/bzip2/bzip2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/bzip2.txt -------------------------------------------------------------------------------- /ext/bzip2/bzip_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/bzip_all.c -------------------------------------------------------------------------------- /ext/bzip2/bzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/bzlib.c -------------------------------------------------------------------------------- /ext/bzip2/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/bzlib.h -------------------------------------------------------------------------------- /ext/bzip2/bzmore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/bzmore -------------------------------------------------------------------------------- /ext/bzip2/bzmore.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/bzmore.1 -------------------------------------------------------------------------------- /ext/bzip2/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/compress.c -------------------------------------------------------------------------------- /ext/bzip2/crctable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/crctable.c -------------------------------------------------------------------------------- /ext/bzip2/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/decompress.c -------------------------------------------------------------------------------- /ext/bzip2/dlltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/dlltest.c -------------------------------------------------------------------------------- /ext/bzip2/dlltest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/dlltest.dsp -------------------------------------------------------------------------------- /ext/bzip2/entities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/entities.xml -------------------------------------------------------------------------------- /ext/bzip2/format.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/format.pl -------------------------------------------------------------------------------- /ext/bzip2/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/huffman.c -------------------------------------------------------------------------------- /ext/bzip2/libbz2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/libbz2.def -------------------------------------------------------------------------------- /ext/bzip2/libbz2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/libbz2.dsp -------------------------------------------------------------------------------- /ext/bzip2/makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/makefile.msc -------------------------------------------------------------------------------- /ext/bzip2/mk251.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/mk251.c -------------------------------------------------------------------------------- /ext/bzip2/randtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/randtable.c -------------------------------------------------------------------------------- /ext/bzip2/spewG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/spewG.c -------------------------------------------------------------------------------- /ext/bzip2/unzcrash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/unzcrash.c -------------------------------------------------------------------------------- /ext/bzip2/words0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/words0 -------------------------------------------------------------------------------- /ext/bzip2/words1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/words1 -------------------------------------------------------------------------------- /ext/bzip2/words2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/words2 -------------------------------------------------------------------------------- /ext/bzip2/words3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/words3 -------------------------------------------------------------------------------- /ext/bzip2/xmlproc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/bzip2/xmlproc.sh -------------------------------------------------------------------------------- /ext/darkmodelib/src/StdAfx.h: -------------------------------------------------------------------------------- 1 | // StdAfx.h 2 | -------------------------------------------------------------------------------- /ext/dav1d/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/.gitignore -------------------------------------------------------------------------------- /ext/dav1d/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/COPYING -------------------------------------------------------------------------------- /ext/dav1d/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/NEWS -------------------------------------------------------------------------------- /ext/dav1d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/README.md -------------------------------------------------------------------------------- /ext/dav1d/THANKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/THANKS.md -------------------------------------------------------------------------------- /ext/dav1d/doc/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/doc/PATENTS -------------------------------------------------------------------------------- /ext/dav1d/gcovr.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/gcovr.cfg -------------------------------------------------------------------------------- /ext/dav1d/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/meson.build -------------------------------------------------------------------------------- /ext/dav1d/src/cdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/cdef.h -------------------------------------------------------------------------------- /ext/dav1d/src/cdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/cdf.c -------------------------------------------------------------------------------- /ext/dav1d/src/cdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/cdf.h -------------------------------------------------------------------------------- /ext/dav1d/src/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/cpu.c -------------------------------------------------------------------------------- /ext/dav1d/src/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/cpu.h -------------------------------------------------------------------------------- /ext/dav1d/src/ctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/ctx.h -------------------------------------------------------------------------------- /ext/dav1d/src/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/data.c -------------------------------------------------------------------------------- /ext/dav1d/src/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/data.h -------------------------------------------------------------------------------- /ext/dav1d/src/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/decode.c -------------------------------------------------------------------------------- /ext/dav1d/src/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/decode.h -------------------------------------------------------------------------------- /ext/dav1d/src/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/env.h -------------------------------------------------------------------------------- /ext/dav1d/src/ipred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/ipred.h -------------------------------------------------------------------------------- /ext/dav1d/src/itx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/itx.h -------------------------------------------------------------------------------- /ext/dav1d/src/itx_1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/itx_1d.c -------------------------------------------------------------------------------- /ext/dav1d/src/itx_1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/itx_1d.h -------------------------------------------------------------------------------- /ext/dav1d/src/levels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/levels.h -------------------------------------------------------------------------------- /ext/dav1d/src/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/lib.c -------------------------------------------------------------------------------- /ext/dav1d/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/log.c -------------------------------------------------------------------------------- /ext/dav1d/src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/log.h -------------------------------------------------------------------------------- /ext/dav1d/src/mc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/mc.h -------------------------------------------------------------------------------- /ext/dav1d/src/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/mem.c -------------------------------------------------------------------------------- /ext/dav1d/src/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/mem.h -------------------------------------------------------------------------------- /ext/dav1d/src/msac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/msac.c -------------------------------------------------------------------------------- /ext/dav1d/src/msac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/msac.h -------------------------------------------------------------------------------- /ext/dav1d/src/obu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/obu.c -------------------------------------------------------------------------------- /ext/dav1d/src/obu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/obu.h -------------------------------------------------------------------------------- /ext/dav1d/src/qm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/qm.c -------------------------------------------------------------------------------- /ext/dav1d/src/qm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/qm.h -------------------------------------------------------------------------------- /ext/dav1d/src/recon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/recon.h -------------------------------------------------------------------------------- /ext/dav1d/src/ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/ref.c -------------------------------------------------------------------------------- /ext/dav1d/src/ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/ref.h -------------------------------------------------------------------------------- /ext/dav1d/src/refmvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/refmvs.c -------------------------------------------------------------------------------- /ext/dav1d/src/refmvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/refmvs.h -------------------------------------------------------------------------------- /ext/dav1d/src/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/scan.c -------------------------------------------------------------------------------- /ext/dav1d/src/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/scan.h -------------------------------------------------------------------------------- /ext/dav1d/src/sumatra_bitdepth_16_2.c: -------------------------------------------------------------------------------- 1 | #define BITDEPTH 16 2 | 3 | #include "looprestoration_tmpl.c" 4 | -------------------------------------------------------------------------------- /ext/dav1d/src/sumatra_bitdepth_8_2.c: -------------------------------------------------------------------------------- 1 | #define BITDEPTH 8 2 | 3 | #include "looprestoration_tmpl.c" 4 | -------------------------------------------------------------------------------- /ext/dav1d/src/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/tables.c -------------------------------------------------------------------------------- /ext/dav1d/src/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/tables.h -------------------------------------------------------------------------------- /ext/dav1d/src/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/thread.h -------------------------------------------------------------------------------- /ext/dav1d/src/warpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/warpmv.c -------------------------------------------------------------------------------- /ext/dav1d/src/warpmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/warpmv.h -------------------------------------------------------------------------------- /ext/dav1d/src/wedge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/wedge.c -------------------------------------------------------------------------------- /ext/dav1d/src/wedge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/dav1d/src/wedge.h -------------------------------------------------------------------------------- /ext/extract/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/COPYING -------------------------------------------------------------------------------- /ext/extract/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/Makefile -------------------------------------------------------------------------------- /ext/extract/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/README -------------------------------------------------------------------------------- /ext/extract/src/docx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/docx.c -------------------------------------------------------------------------------- /ext/extract/src/docx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/docx.h -------------------------------------------------------------------------------- /ext/extract/src/html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/html.c -------------------------------------------------------------------------------- /ext/extract/src/html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/html.h -------------------------------------------------------------------------------- /ext/extract/src/join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/join.c -------------------------------------------------------------------------------- /ext/extract/src/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/json.c -------------------------------------------------------------------------------- /ext/extract/src/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/json.h -------------------------------------------------------------------------------- /ext/extract/src/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/mem.c -------------------------------------------------------------------------------- /ext/extract/src/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/mem.h -------------------------------------------------------------------------------- /ext/extract/src/odt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/odt.c -------------------------------------------------------------------------------- /ext/extract/src/odt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/odt.h -------------------------------------------------------------------------------- /ext/extract/src/outf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/outf.c -------------------------------------------------------------------------------- /ext/extract/src/outf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/outf.h -------------------------------------------------------------------------------- /ext/extract/src/rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/rect.c -------------------------------------------------------------------------------- /ext/extract/src/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/sys.c -------------------------------------------------------------------------------- /ext/extract/src/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/sys.h -------------------------------------------------------------------------------- /ext/extract/src/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/text.c -------------------------------------------------------------------------------- /ext/extract/src/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/text.h -------------------------------------------------------------------------------- /ext/extract/src/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/xml.c -------------------------------------------------------------------------------- /ext/extract/src/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/xml.h -------------------------------------------------------------------------------- /ext/extract/src/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/zip.c -------------------------------------------------------------------------------- /ext/extract/src/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/extract/src/zip.h -------------------------------------------------------------------------------- /ext/freetype/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/freetype/.mailmap -------------------------------------------------------------------------------- /ext/freetype/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/freetype/Makefile -------------------------------------------------------------------------------- /ext/freetype/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/freetype/README -------------------------------------------------------------------------------- /ext/freetype/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/freetype/configure -------------------------------------------------------------------------------- /ext/freetype/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/freetype/docs/TODO -------------------------------------------------------------------------------- /ext/freetype/objs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !README 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /ext/harfbuzz/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/harfbuzz/AUTHORS -------------------------------------------------------------------------------- /ext/harfbuzz/BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/harfbuzz/BUILD.md -------------------------------------------------------------------------------- /ext/harfbuzz/CONFIG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/harfbuzz/CONFIG.md -------------------------------------------------------------------------------- /ext/harfbuzz/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/harfbuzz/COPYING -------------------------------------------------------------------------------- /ext/harfbuzz/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/harfbuzz/NEWS -------------------------------------------------------------------------------- /ext/harfbuzz/README: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /ext/harfbuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/harfbuzz/README.md -------------------------------------------------------------------------------- /ext/harfbuzz/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/harfbuzz/THANKS -------------------------------------------------------------------------------- /ext/harfbuzz/docs/harfbuzz-overrides.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/harfbuzz/docs/version.xml.in: -------------------------------------------------------------------------------- 1 | @HB_VERSION@ 2 | -------------------------------------------------------------------------------- /ext/harfbuzz/git.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/harfbuzz/git.mk -------------------------------------------------------------------------------- /ext/harfbuzz/src/hb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/harfbuzz/src/hb.h -------------------------------------------------------------------------------- /ext/harfbuzz/src/hb.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/harfbuzz/src/hb.hh -------------------------------------------------------------------------------- /ext/jbig2dec/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/jbig2dec/CHANGES -------------------------------------------------------------------------------- /ext/jbig2dec/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/jbig2dec/COPYING -------------------------------------------------------------------------------- /ext/jbig2dec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/jbig2dec/LICENSE -------------------------------------------------------------------------------- /ext/jbig2dec/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/jbig2dec/README -------------------------------------------------------------------------------- /ext/jbig2dec/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/jbig2dec/getopt.c -------------------------------------------------------------------------------- /ext/jbig2dec/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/jbig2dec/getopt.h -------------------------------------------------------------------------------- /ext/jbig2dec/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/jbig2dec/getopt1.c -------------------------------------------------------------------------------- /ext/jbig2dec/jbig2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/jbig2dec/jbig2.c -------------------------------------------------------------------------------- /ext/jbig2dec/jbig2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/jbig2dec/jbig2.h -------------------------------------------------------------------------------- /ext/jbig2dec/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/jbig2dec/memcmp.c -------------------------------------------------------------------------------- /ext/jbig2dec/memento.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/jbig2dec/memento.c -------------------------------------------------------------------------------- /ext/jbig2dec/memento.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/jbig2dec/memento.h -------------------------------------------------------------------------------- /ext/jbig2dec/msvc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/jbig2dec/msvc.mak -------------------------------------------------------------------------------- /ext/jbig2dec/pbm2png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/jbig2dec/pbm2png.c -------------------------------------------------------------------------------- /ext/jbig2dec/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/jbig2dec/sha1.c -------------------------------------------------------------------------------- /ext/jbig2dec/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/jbig2dec/sha1.h -------------------------------------------------------------------------------- /ext/lcms2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/.gitignore -------------------------------------------------------------------------------- /ext/lcms2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/.travis.yml -------------------------------------------------------------------------------- /ext/lcms2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/AUTHORS -------------------------------------------------------------------------------- /ext/lcms2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/COPYING -------------------------------------------------------------------------------- /ext/lcms2/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/ChangeLog -------------------------------------------------------------------------------- /ext/lcms2/INSTALL: -------------------------------------------------------------------------------- 1 | 2 | Please see the documentation in doc folder 3 | -------------------------------------------------------------------------------- /ext/lcms2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/LICENSE -------------------------------------------------------------------------------- /ext/lcms2/Lib/BC/BC.txt: -------------------------------------------------------------------------------- 1 | BC -------------------------------------------------------------------------------- /ext/lcms2/Lib/MS/MS.TXT: -------------------------------------------------------------------------------- 1 | MS -------------------------------------------------------------------------------- /ext/lcms2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/Makefile.am -------------------------------------------------------------------------------- /ext/lcms2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/Makefile.in -------------------------------------------------------------------------------- /ext/lcms2/README.1ST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/README.1ST -------------------------------------------------------------------------------- /ext/lcms2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/README.md -------------------------------------------------------------------------------- /ext/lcms2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/SECURITY.md -------------------------------------------------------------------------------- /ext/lcms2/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/aclocal.m4 -------------------------------------------------------------------------------- /ext/lcms2/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/autogen.sh -------------------------------------------------------------------------------- /ext/lcms2/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/compile -------------------------------------------------------------------------------- /ext/lcms2/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/config.guess -------------------------------------------------------------------------------- /ext/lcms2/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/config.sub -------------------------------------------------------------------------------- /ext/lcms2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/configure -------------------------------------------------------------------------------- /ext/lcms2/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/configure.ac -------------------------------------------------------------------------------- /ext/lcms2/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/depcomp -------------------------------------------------------------------------------- /ext/lcms2/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/install-sh -------------------------------------------------------------------------------- /ext/lcms2/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/ltmain.sh -------------------------------------------------------------------------------- /ext/lcms2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/meson.build -------------------------------------------------------------------------------- /ext/lcms2/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/missing -------------------------------------------------------------------------------- /ext/lcms2/plugins/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = fast_float threaded 2 | -------------------------------------------------------------------------------- /ext/lcms2/plugins/fast_float/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src include testbed 2 | -------------------------------------------------------------------------------- /ext/lcms2/plugins/fast_float/include/meson.build: -------------------------------------------------------------------------------- 1 | install_headers('lcms2_fast_float.h') 2 | -------------------------------------------------------------------------------- /ext/lcms2/plugins/test_profiles/meson.build: -------------------------------------------------------------------------------- 1 | profiles_dir = meson.current_source_dir() 2 | -------------------------------------------------------------------------------- /ext/lcms2/plugins/threaded/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src include testbed 2 | -------------------------------------------------------------------------------- /ext/lcms2/plugins/threaded/include/meson.build: -------------------------------------------------------------------------------- 1 | install_headers('lcms2_threaded.h') 2 | -------------------------------------------------------------------------------- /ext/lcms2/src/cmserr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/src/cmserr.c -------------------------------------------------------------------------------- /ext/lcms2/src/cmsgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/src/cmsgmt.c -------------------------------------------------------------------------------- /ext/lcms2/src/cmsio0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/src/cmsio0.c -------------------------------------------------------------------------------- /ext/lcms2/src/cmsio1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/src/cmsio1.c -------------------------------------------------------------------------------- /ext/lcms2/src/cmslut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/src/cmslut.c -------------------------------------------------------------------------------- /ext/lcms2/src/cmsmd5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/src/cmsmd5.c -------------------------------------------------------------------------------- /ext/lcms2/src/cmsopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/src/cmsopt.c -------------------------------------------------------------------------------- /ext/lcms2/src/cmspcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/src/cmspcs.c -------------------------------------------------------------------------------- /ext/lcms2/src/cmsps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/src/cmsps2.c -------------------------------------------------------------------------------- /ext/lcms2/src/cmssm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lcms2/src/cmssm.c -------------------------------------------------------------------------------- /ext/lcms2/utils/matlab/howto.txt: -------------------------------------------------------------------------------- 1 | 2 | To compile for matlab use: 3 | 4 | mex @lcms_rsp 5 | -------------------------------------------------------------------------------- /ext/libdjvu/Arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/Arrays.cpp -------------------------------------------------------------------------------- /ext/libdjvu/Arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/Arrays.h -------------------------------------------------------------------------------- /ext/libdjvu/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/COPYRIGHT -------------------------------------------------------------------------------- /ext/libdjvu/DataPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/DataPool.h -------------------------------------------------------------------------------- /ext/libdjvu/DjVmDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/DjVmDir.h -------------------------------------------------------------------------------- /ext/libdjvu/DjVmDir0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/DjVmDir0.h -------------------------------------------------------------------------------- /ext/libdjvu/DjVmDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/DjVmDoc.h -------------------------------------------------------------------------------- /ext/libdjvu/DjVmNav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/DjVmNav.h -------------------------------------------------------------------------------- /ext/libdjvu/DjVuAnno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/DjVuAnno.h -------------------------------------------------------------------------------- /ext/libdjvu/DjVuFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/DjVuFile.h -------------------------------------------------------------------------------- /ext/libdjvu/DjVuInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/DjVuInfo.h -------------------------------------------------------------------------------- /ext/libdjvu/DjVuPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/DjVuPort.h -------------------------------------------------------------------------------- /ext/libdjvu/DjVuText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/DjVuText.h -------------------------------------------------------------------------------- /ext/libdjvu/DjVuToPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/DjVuToPS.h -------------------------------------------------------------------------------- /ext/libdjvu/GBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/GBitmap.h -------------------------------------------------------------------------------- /ext/libdjvu/GOS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/GOS.cpp -------------------------------------------------------------------------------- /ext/libdjvu/GOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/GOS.h -------------------------------------------------------------------------------- /ext/libdjvu/GPixmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/GPixmap.h -------------------------------------------------------------------------------- /ext/libdjvu/GRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/GRect.cpp -------------------------------------------------------------------------------- /ext/libdjvu/GRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/GRect.h -------------------------------------------------------------------------------- /ext/libdjvu/GScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/GScaler.h -------------------------------------------------------------------------------- /ext/libdjvu/GString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/GString.h -------------------------------------------------------------------------------- /ext/libdjvu/GThreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/GThreads.h -------------------------------------------------------------------------------- /ext/libdjvu/GURL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/GURL.cpp -------------------------------------------------------------------------------- /ext/libdjvu/GURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/GURL.h -------------------------------------------------------------------------------- /ext/libdjvu/JB2Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/JB2Image.h -------------------------------------------------------------------------------- /ext/libdjvu/MMX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/MMX.cpp -------------------------------------------------------------------------------- /ext/libdjvu/MMX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/MMX.h -------------------------------------------------------------------------------- /ext/libdjvu/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/Template.h -------------------------------------------------------------------------------- /ext/libdjvu/XMLTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/XMLTags.h -------------------------------------------------------------------------------- /ext/libdjvu/ZPCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/ZPCodec.h -------------------------------------------------------------------------------- /ext/libdjvu/atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/atomic.cpp -------------------------------------------------------------------------------- /ext/libdjvu/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/atomic.h -------------------------------------------------------------------------------- /ext/libdjvu/ddjvuapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/ddjvuapi.h -------------------------------------------------------------------------------- /ext/libdjvu/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/debug.cpp -------------------------------------------------------------------------------- /ext/libdjvu/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/debug.h -------------------------------------------------------------------------------- /ext/libdjvu/miniexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libdjvu/miniexp.h -------------------------------------------------------------------------------- /ext/libheif/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libheif/.gitignore -------------------------------------------------------------------------------- /ext/libheif/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libheif/COPYING -------------------------------------------------------------------------------- /ext/libheif/CPPLINT.cfg: -------------------------------------------------------------------------------- 1 | set noparent 2 | filter=-,+build/include_what_you_use 3 | -------------------------------------------------------------------------------- /ext/libheif/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libheif/README.md -------------------------------------------------------------------------------- /ext/libheif/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libheif/autogen.sh -------------------------------------------------------------------------------- /ext/libheif/libheif/CPPLINT.cfg: -------------------------------------------------------------------------------- 1 | # filter=-build/include_what_you_use 2 | -------------------------------------------------------------------------------- /ext/libheif/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libheif/post.js -------------------------------------------------------------------------------- /ext/libheif/pre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libheif/pre.js -------------------------------------------------------------------------------- /ext/libwebp/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libwebp/.pylintrc -------------------------------------------------------------------------------- /ext/libwebp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libwebp/AUTHORS -------------------------------------------------------------------------------- /ext/libwebp/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libwebp/Android.mk -------------------------------------------------------------------------------- /ext/libwebp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libwebp/COPYING -------------------------------------------------------------------------------- /ext/libwebp/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libwebp/ChangeLog -------------------------------------------------------------------------------- /ext/libwebp/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libwebp/NEWS -------------------------------------------------------------------------------- /ext/libwebp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libwebp/PATENTS -------------------------------------------------------------------------------- /ext/libwebp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libwebp/README.md -------------------------------------------------------------------------------- /ext/libwebp/autogen.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh -e 2 | exec autoreconf -fi 3 | -------------------------------------------------------------------------------- /ext/libwebp/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libwebp/doc/TODO -------------------------------------------------------------------------------- /ext/libwebp/doc/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libwebp/doc/api.md -------------------------------------------------------------------------------- /ext/libwebp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/libwebp/gradlew -------------------------------------------------------------------------------- /ext/lzma/7zC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/7zC.txt -------------------------------------------------------------------------------- /ext/lzma/7zFormat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/7zFormat.txt -------------------------------------------------------------------------------- /ext/lzma/C/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/7z.h -------------------------------------------------------------------------------- /ext/lzma/C/7zAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/7zAlloc.c -------------------------------------------------------------------------------- /ext/lzma/C/7zAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/7zAlloc.h -------------------------------------------------------------------------------- /ext/lzma/C/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/7zBuf.c -------------------------------------------------------------------------------- /ext/lzma/C/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/7zBuf.h -------------------------------------------------------------------------------- /ext/lzma/C/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/7zBuf2.c -------------------------------------------------------------------------------- /ext/lzma/C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/7zCrc.c -------------------------------------------------------------------------------- /ext/lzma/C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/7zCrc.h -------------------------------------------------------------------------------- /ext/lzma/C/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/7zCrcOpt.c -------------------------------------------------------------------------------- /ext/lzma/C/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/7zDec.c -------------------------------------------------------------------------------- /ext/lzma/C/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/7zFile.c -------------------------------------------------------------------------------- /ext/lzma/C/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/7zFile.h -------------------------------------------------------------------------------- /ext/lzma/C/7zIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/7zIn.c -------------------------------------------------------------------------------- /ext/lzma/C/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/7zStream.c -------------------------------------------------------------------------------- /ext/lzma/C/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/7zVersion.h -------------------------------------------------------------------------------- /ext/lzma/C/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Alloc.c -------------------------------------------------------------------------------- /ext/lzma/C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Alloc.h -------------------------------------------------------------------------------- /ext/lzma/C/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Bcj2.c -------------------------------------------------------------------------------- /ext/lzma/C/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Bcj2.h -------------------------------------------------------------------------------- /ext/lzma/C/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Bra.c -------------------------------------------------------------------------------- /ext/lzma/C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Bra.h -------------------------------------------------------------------------------- /ext/lzma/C/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Bra86.c -------------------------------------------------------------------------------- /ext/lzma/C/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/BraIA64.c -------------------------------------------------------------------------------- /ext/lzma/C/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/CpuArch.c -------------------------------------------------------------------------------- /ext/lzma/C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/CpuArch.h -------------------------------------------------------------------------------- /ext/lzma/C/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Delta.c -------------------------------------------------------------------------------- /ext/lzma/C/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Delta.h -------------------------------------------------------------------------------- /ext/lzma/C/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/LzFind.c -------------------------------------------------------------------------------- /ext/lzma/C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/LzFind.h -------------------------------------------------------------------------------- /ext/lzma/C/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/LzFindMt.c -------------------------------------------------------------------------------- /ext/lzma/C/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/LzFindMt.h -------------------------------------------------------------------------------- /ext/lzma/C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/LzHash.h -------------------------------------------------------------------------------- /ext/lzma/C/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Lzma2Dec.c -------------------------------------------------------------------------------- /ext/lzma/C/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Lzma2Dec.h -------------------------------------------------------------------------------- /ext/lzma/C/Lzma2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Lzma2Enc.c -------------------------------------------------------------------------------- /ext/lzma/C/Lzma2Enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Lzma2Enc.h -------------------------------------------------------------------------------- /ext/lzma/C/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Lzma86.h -------------------------------------------------------------------------------- /ext/lzma/C/Lzma86Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Lzma86Dec.c -------------------------------------------------------------------------------- /ext/lzma/C/Lzma86Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Lzma86Enc.c -------------------------------------------------------------------------------- /ext/lzma/C/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/LzmaDec.c -------------------------------------------------------------------------------- /ext/lzma/C/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/LzmaDec.h -------------------------------------------------------------------------------- /ext/lzma/C/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/LzmaEnc.c -------------------------------------------------------------------------------- /ext/lzma/C/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/LzmaEnc.h -------------------------------------------------------------------------------- /ext/lzma/C/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/LzmaLib.c -------------------------------------------------------------------------------- /ext/lzma/C/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/LzmaLib.h -------------------------------------------------------------------------------- /ext/lzma/C/MtCoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/MtCoder.c -------------------------------------------------------------------------------- /ext/lzma/C/MtCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/MtCoder.h -------------------------------------------------------------------------------- /ext/lzma/C/Ppmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Ppmd.h -------------------------------------------------------------------------------- /ext/lzma/C/Ppmd7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Ppmd7.c -------------------------------------------------------------------------------- /ext/lzma/C/Ppmd7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Ppmd7.h -------------------------------------------------------------------------------- /ext/lzma/C/Ppmd7Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Ppmd7Dec.c -------------------------------------------------------------------------------- /ext/lzma/C/Ppmd7Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Ppmd7Enc.c -------------------------------------------------------------------------------- /ext/lzma/C/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Sha256.c -------------------------------------------------------------------------------- /ext/lzma/C/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Sha256.h -------------------------------------------------------------------------------- /ext/lzma/C/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Threads.c -------------------------------------------------------------------------------- /ext/lzma/C/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Threads.h -------------------------------------------------------------------------------- /ext/lzma/C/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Types.h -------------------------------------------------------------------------------- /ext/lzma/C/Xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Xz.c -------------------------------------------------------------------------------- /ext/lzma/C/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/Xz.h -------------------------------------------------------------------------------- /ext/lzma/C/XzCrc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/XzCrc64.c -------------------------------------------------------------------------------- /ext/lzma/C/XzCrc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/XzCrc64.h -------------------------------------------------------------------------------- /ext/lzma/C/XzDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/XzDec.c -------------------------------------------------------------------------------- /ext/lzma/C/XzEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/XzEnc.c -------------------------------------------------------------------------------- /ext/lzma/C/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/XzEnc.h -------------------------------------------------------------------------------- /ext/lzma/C/XzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/C/XzIn.c -------------------------------------------------------------------------------- /ext/lzma/Methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/Methods.txt -------------------------------------------------------------------------------- /ext/lzma/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/history.txt -------------------------------------------------------------------------------- /ext/lzma/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/lzma/lzma.txt -------------------------------------------------------------------------------- /ext/mujs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/.gitignore -------------------------------------------------------------------------------- /ext/mujs/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/AUTHORS -------------------------------------------------------------------------------- /ext/mujs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/COPYING -------------------------------------------------------------------------------- /ext/mujs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/Makefile -------------------------------------------------------------------------------- /ext/mujs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/README -------------------------------------------------------------------------------- /ext/mujs/astnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/astnames.h -------------------------------------------------------------------------------- /ext/mujs/docs/logo.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/docs/logo.ps -------------------------------------------------------------------------------- /ext/mujs/genucd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/genucd.py -------------------------------------------------------------------------------- /ext/mujs/jsarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsarray.c -------------------------------------------------------------------------------- /ext/mujs/jsboolean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsboolean.c -------------------------------------------------------------------------------- /ext/mujs/jsbuiltin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsbuiltin.c -------------------------------------------------------------------------------- /ext/mujs/jscompile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jscompile.c -------------------------------------------------------------------------------- /ext/mujs/jsdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsdate.c -------------------------------------------------------------------------------- /ext/mujs/jsdtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsdtoa.c -------------------------------------------------------------------------------- /ext/mujs/jserror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jserror.c -------------------------------------------------------------------------------- /ext/mujs/jsfunction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsfunction.c -------------------------------------------------------------------------------- /ext/mujs/jsgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsgc.c -------------------------------------------------------------------------------- /ext/mujs/jsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsi.h -------------------------------------------------------------------------------- /ext/mujs/jsintern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsintern.c -------------------------------------------------------------------------------- /ext/mujs/jslex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jslex.c -------------------------------------------------------------------------------- /ext/mujs/jsmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsmath.c -------------------------------------------------------------------------------- /ext/mujs/jsnumber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsnumber.c -------------------------------------------------------------------------------- /ext/mujs/jsobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsobject.c -------------------------------------------------------------------------------- /ext/mujs/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/json.c -------------------------------------------------------------------------------- /ext/mujs/jsparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsparse.c -------------------------------------------------------------------------------- /ext/mujs/jsproperty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsproperty.c -------------------------------------------------------------------------------- /ext/mujs/jsregexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsregexp.c -------------------------------------------------------------------------------- /ext/mujs/jsrepr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsrepr.c -------------------------------------------------------------------------------- /ext/mujs/jsrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsrun.c -------------------------------------------------------------------------------- /ext/mujs/jsstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsstate.c -------------------------------------------------------------------------------- /ext/mujs/jsstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsstring.c -------------------------------------------------------------------------------- /ext/mujs/jsvalue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/jsvalue.c -------------------------------------------------------------------------------- /ext/mujs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/main.c -------------------------------------------------------------------------------- /ext/mujs/mujs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/mujs.h -------------------------------------------------------------------------------- /ext/mujs/one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/one.c -------------------------------------------------------------------------------- /ext/mujs/opnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/opnames.h -------------------------------------------------------------------------------- /ext/mujs/pp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/pp.c -------------------------------------------------------------------------------- /ext/mujs/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/regexp.c -------------------------------------------------------------------------------- /ext/mujs/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/regexp.h -------------------------------------------------------------------------------- /ext/mujs/tools/test262: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/tools/test262 -------------------------------------------------------------------------------- /ext/mujs/utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/utf.c -------------------------------------------------------------------------------- /ext/mujs/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/utf.h -------------------------------------------------------------------------------- /ext/mujs/utfdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/mujs/utfdata.h -------------------------------------------------------------------------------- /ext/openjpeg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/openjpeg/LICENSE -------------------------------------------------------------------------------- /ext/openjpeg/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/openjpeg/NEWS.md -------------------------------------------------------------------------------- /ext/openjpeg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/openjpeg/README.md -------------------------------------------------------------------------------- /ext/openjpeg/THANKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/openjpeg/THANKS.md -------------------------------------------------------------------------------- /ext/synctex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/synctex/LICENSE -------------------------------------------------------------------------------- /ext/synctex/synctex_parser_api_level.txt: -------------------------------------------------------------------------------- 1 | 2.0.0 2 | -------------------------------------------------------------------------------- /ext/synctex/synctex_parser_version.txt: -------------------------------------------------------------------------------- 1 | 1.21 2 | -------------------------------------------------------------------------------- /ext/unarr/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unarr/AUTHORS -------------------------------------------------------------------------------- /ext/unarr/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unarr/COPYING -------------------------------------------------------------------------------- /ext/unarr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unarr/Makefile -------------------------------------------------------------------------------- /ext/unarr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unarr/README -------------------------------------------------------------------------------- /ext/unarr/_7z/_7z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unarr/_7z/_7z.c -------------------------------------------------------------------------------- /ext/unarr/_7z/_7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unarr/_7z/_7z.h -------------------------------------------------------------------------------- /ext/unarr/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unarr/main.c -------------------------------------------------------------------------------- /ext/unarr/rar/lzss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unarr/rar/lzss.h -------------------------------------------------------------------------------- /ext/unarr/rar/rar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unarr/rar/rar.c -------------------------------------------------------------------------------- /ext/unarr/rar/rar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unarr/rar/rar.h -------------------------------------------------------------------------------- /ext/unarr/rar/rarvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unarr/rar/rarvm.c -------------------------------------------------------------------------------- /ext/unarr/rar/rarvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unarr/rar/rarvm.h -------------------------------------------------------------------------------- /ext/unarr/tar/tar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unarr/tar/tar.c -------------------------------------------------------------------------------- /ext/unarr/tar/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unarr/tar/tar.h -------------------------------------------------------------------------------- /ext/unarr/unarr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unarr/unarr.h -------------------------------------------------------------------------------- /ext/unarr/zip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unarr/zip/zip.c -------------------------------------------------------------------------------- /ext/unarr/zip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unarr/zip/zip.h -------------------------------------------------------------------------------- /ext/unrar/acknow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/acknow.txt -------------------------------------------------------------------------------- /ext/unrar/arccmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/arccmt.cpp -------------------------------------------------------------------------------- /ext/unrar/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/archive.cpp -------------------------------------------------------------------------------- /ext/unrar/archive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/archive.hpp -------------------------------------------------------------------------------- /ext/unrar/arcread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/arcread.cpp -------------------------------------------------------------------------------- /ext/unrar/blake2s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/blake2s.cpp -------------------------------------------------------------------------------- /ext/unrar/blake2s.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/blake2s.hpp -------------------------------------------------------------------------------- /ext/unrar/blake2sp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/blake2sp.cpp -------------------------------------------------------------------------------- /ext/unrar/cmddata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/cmddata.cpp -------------------------------------------------------------------------------- /ext/unrar/cmddata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/cmddata.hpp -------------------------------------------------------------------------------- /ext/unrar/cmdmix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/cmdmix.cpp -------------------------------------------------------------------------------- /ext/unrar/coder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/coder.cpp -------------------------------------------------------------------------------- /ext/unrar/coder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/coder.hpp -------------------------------------------------------------------------------- /ext/unrar/compress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/compress.hpp -------------------------------------------------------------------------------- /ext/unrar/consio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/consio.cpp -------------------------------------------------------------------------------- /ext/unrar/consio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/consio.hpp -------------------------------------------------------------------------------- /ext/unrar/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/crc.cpp -------------------------------------------------------------------------------- /ext/unrar/crc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/crc.hpp -------------------------------------------------------------------------------- /ext/unrar/crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/crypt.cpp -------------------------------------------------------------------------------- /ext/unrar/crypt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/crypt.hpp -------------------------------------------------------------------------------- /ext/unrar/crypt1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/crypt1.cpp -------------------------------------------------------------------------------- /ext/unrar/crypt2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/crypt2.cpp -------------------------------------------------------------------------------- /ext/unrar/crypt3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/crypt3.cpp -------------------------------------------------------------------------------- /ext/unrar/crypt5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/crypt5.cpp -------------------------------------------------------------------------------- /ext/unrar/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/dll.cpp -------------------------------------------------------------------------------- /ext/unrar/dll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/dll.def -------------------------------------------------------------------------------- /ext/unrar/dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/dll.hpp -------------------------------------------------------------------------------- /ext/unrar/dll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/dll.rc -------------------------------------------------------------------------------- /ext/unrar/encname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/encname.cpp -------------------------------------------------------------------------------- /ext/unrar/encname.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/encname.hpp -------------------------------------------------------------------------------- /ext/unrar/errhnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/errhnd.cpp -------------------------------------------------------------------------------- /ext/unrar/errhnd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/errhnd.hpp -------------------------------------------------------------------------------- /ext/unrar/extinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/extinfo.cpp -------------------------------------------------------------------------------- /ext/unrar/extinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/extinfo.hpp -------------------------------------------------------------------------------- /ext/unrar/extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/extract.cpp -------------------------------------------------------------------------------- /ext/unrar/extract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/extract.hpp -------------------------------------------------------------------------------- /ext/unrar/filcreat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/filcreat.cpp -------------------------------------------------------------------------------- /ext/unrar/filcreat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/filcreat.hpp -------------------------------------------------------------------------------- /ext/unrar/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/file.cpp -------------------------------------------------------------------------------- /ext/unrar/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/file.hpp -------------------------------------------------------------------------------- /ext/unrar/filefn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/filefn.cpp -------------------------------------------------------------------------------- /ext/unrar/filefn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/filefn.hpp -------------------------------------------------------------------------------- /ext/unrar/filestr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/filestr.cpp -------------------------------------------------------------------------------- /ext/unrar/filestr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/filestr.hpp -------------------------------------------------------------------------------- /ext/unrar/find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/find.cpp -------------------------------------------------------------------------------- /ext/unrar/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/find.hpp -------------------------------------------------------------------------------- /ext/unrar/getbits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/getbits.cpp -------------------------------------------------------------------------------- /ext/unrar/getbits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/getbits.hpp -------------------------------------------------------------------------------- /ext/unrar/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/global.cpp -------------------------------------------------------------------------------- /ext/unrar/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/global.hpp -------------------------------------------------------------------------------- /ext/unrar/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/hash.cpp -------------------------------------------------------------------------------- /ext/unrar/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/hash.hpp -------------------------------------------------------------------------------- /ext/unrar/headers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/headers.cpp -------------------------------------------------------------------------------- /ext/unrar/headers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/headers.hpp -------------------------------------------------------------------------------- /ext/unrar/headers5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/headers5.hpp -------------------------------------------------------------------------------- /ext/unrar/isnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/isnt.cpp -------------------------------------------------------------------------------- /ext/unrar/isnt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/isnt.hpp -------------------------------------------------------------------------------- /ext/unrar/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/license.txt -------------------------------------------------------------------------------- /ext/unrar/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/list.cpp -------------------------------------------------------------------------------- /ext/unrar/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/list.hpp -------------------------------------------------------------------------------- /ext/unrar/loclang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/loclang.hpp -------------------------------------------------------------------------------- /ext/unrar/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/log.cpp -------------------------------------------------------------------------------- /ext/unrar/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/log.hpp -------------------------------------------------------------------------------- /ext/unrar/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/makefile -------------------------------------------------------------------------------- /ext/unrar/match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/match.cpp -------------------------------------------------------------------------------- /ext/unrar/match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/match.hpp -------------------------------------------------------------------------------- /ext/unrar/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/model.cpp -------------------------------------------------------------------------------- /ext/unrar/model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/model.hpp -------------------------------------------------------------------------------- /ext/unrar/motw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/motw.cpp -------------------------------------------------------------------------------- /ext/unrar/motw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/motw.hpp -------------------------------------------------------------------------------- /ext/unrar/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/options.cpp -------------------------------------------------------------------------------- /ext/unrar/options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/options.hpp -------------------------------------------------------------------------------- /ext/unrar/os.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/os.hpp -------------------------------------------------------------------------------- /ext/unrar/pathfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/pathfn.cpp -------------------------------------------------------------------------------- /ext/unrar/pathfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/pathfn.hpp -------------------------------------------------------------------------------- /ext/unrar/qopen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/qopen.cpp -------------------------------------------------------------------------------- /ext/unrar/qopen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/qopen.hpp -------------------------------------------------------------------------------- /ext/unrar/rar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rar.cpp -------------------------------------------------------------------------------- /ext/unrar/rar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rar.hpp -------------------------------------------------------------------------------- /ext/unrar/rardefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rardefs.hpp -------------------------------------------------------------------------------- /ext/unrar/rarlang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rarlang.hpp -------------------------------------------------------------------------------- /ext/unrar/raros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/raros.hpp -------------------------------------------------------------------------------- /ext/unrar/rarpch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rarpch.cpp -------------------------------------------------------------------------------- /ext/unrar/rartypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rartypes.hpp -------------------------------------------------------------------------------- /ext/unrar/rarvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rarvm.cpp -------------------------------------------------------------------------------- /ext/unrar/rarvm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rarvm.hpp -------------------------------------------------------------------------------- /ext/unrar/rawint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rawint.hpp -------------------------------------------------------------------------------- /ext/unrar/rawread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rawread.cpp -------------------------------------------------------------------------------- /ext/unrar/rawread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rawread.hpp -------------------------------------------------------------------------------- /ext/unrar/rdwrfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rdwrfn.cpp -------------------------------------------------------------------------------- /ext/unrar/rdwrfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rdwrfn.hpp -------------------------------------------------------------------------------- /ext/unrar/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/readme.txt -------------------------------------------------------------------------------- /ext/unrar/recvol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/recvol.cpp -------------------------------------------------------------------------------- /ext/unrar/recvol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/recvol.hpp -------------------------------------------------------------------------------- /ext/unrar/recvol3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/recvol3.cpp -------------------------------------------------------------------------------- /ext/unrar/recvol5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/recvol5.cpp -------------------------------------------------------------------------------- /ext/unrar/resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/resource.cpp -------------------------------------------------------------------------------- /ext/unrar/resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/resource.hpp -------------------------------------------------------------------------------- /ext/unrar/rijndael.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rijndael.cpp -------------------------------------------------------------------------------- /ext/unrar/rijndael.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rijndael.hpp -------------------------------------------------------------------------------- /ext/unrar/rs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rs.cpp -------------------------------------------------------------------------------- /ext/unrar/rs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rs.hpp -------------------------------------------------------------------------------- /ext/unrar/rs16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rs16.cpp -------------------------------------------------------------------------------- /ext/unrar/rs16.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/rs16.hpp -------------------------------------------------------------------------------- /ext/unrar/scantree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/scantree.cpp -------------------------------------------------------------------------------- /ext/unrar/scantree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/scantree.hpp -------------------------------------------------------------------------------- /ext/unrar/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/sha1.cpp -------------------------------------------------------------------------------- /ext/unrar/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/sha1.hpp -------------------------------------------------------------------------------- /ext/unrar/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/sha256.cpp -------------------------------------------------------------------------------- /ext/unrar/sha256.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/sha256.hpp -------------------------------------------------------------------------------- /ext/unrar/smallfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/smallfn.cpp -------------------------------------------------------------------------------- /ext/unrar/smallfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/smallfn.hpp -------------------------------------------------------------------------------- /ext/unrar/strfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/strfn.cpp -------------------------------------------------------------------------------- /ext/unrar/strfn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/strfn.hpp -------------------------------------------------------------------------------- /ext/unrar/strlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/strlist.cpp -------------------------------------------------------------------------------- /ext/unrar/strlist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/strlist.hpp -------------------------------------------------------------------------------- /ext/unrar/suballoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/suballoc.cpp -------------------------------------------------------------------------------- /ext/unrar/suballoc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/suballoc.hpp -------------------------------------------------------------------------------- /ext/unrar/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/system.cpp -------------------------------------------------------------------------------- /ext/unrar/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/system.hpp -------------------------------------------------------------------------------- /ext/unrar/timefn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/timefn.cpp -------------------------------------------------------------------------------- /ext/unrar/timefn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/timefn.hpp -------------------------------------------------------------------------------- /ext/unrar/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/ui.cpp -------------------------------------------------------------------------------- /ext/unrar/ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/ui.hpp -------------------------------------------------------------------------------- /ext/unrar/uicommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/uicommon.cpp -------------------------------------------------------------------------------- /ext/unrar/uisilent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/uisilent.cpp -------------------------------------------------------------------------------- /ext/unrar/ulinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/ulinks.cpp -------------------------------------------------------------------------------- /ext/unrar/unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/unicode.cpp -------------------------------------------------------------------------------- /ext/unrar/unicode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/unicode.hpp -------------------------------------------------------------------------------- /ext/unrar/unpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/unpack.cpp -------------------------------------------------------------------------------- /ext/unrar/unpack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/unpack.hpp -------------------------------------------------------------------------------- /ext/unrar/unpack15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/unpack15.cpp -------------------------------------------------------------------------------- /ext/unrar/unpack20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/unpack20.cpp -------------------------------------------------------------------------------- /ext/unrar/unpack30.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/unpack30.cpp -------------------------------------------------------------------------------- /ext/unrar/unpack50.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/unpack50.cpp -------------------------------------------------------------------------------- /ext/unrar/uowners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/uowners.cpp -------------------------------------------------------------------------------- /ext/unrar/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/version.hpp -------------------------------------------------------------------------------- /ext/unrar/volume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/volume.cpp -------------------------------------------------------------------------------- /ext/unrar/volume.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/volume.hpp -------------------------------------------------------------------------------- /ext/unrar/win32acl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/win32acl.cpp -------------------------------------------------------------------------------- /ext/unrar/win32lnk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/win32lnk.cpp -------------------------------------------------------------------------------- /ext/unrar/win32stm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/unrar/win32stm.cpp -------------------------------------------------------------------------------- /ext/versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/versions.txt -------------------------------------------------------------------------------- /ext/zlib-ng/FAQ.zlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/FAQ.zlib -------------------------------------------------------------------------------- /ext/zlib-ng/INDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/INDEX.md -------------------------------------------------------------------------------- /ext/zlib-ng/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/LICENSE.md -------------------------------------------------------------------------------- /ext/zlib-ng/PORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/PORTING.md -------------------------------------------------------------------------------- /ext/zlib-ng/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/README.md -------------------------------------------------------------------------------- /ext/zlib-ng/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/adler32.c -------------------------------------------------------------------------------- /ext/zlib-ng/chunkset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/chunkset.c -------------------------------------------------------------------------------- /ext/zlib-ng/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/compress.c -------------------------------------------------------------------------------- /ext/zlib-ng/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/configure -------------------------------------------------------------------------------- /ext/zlib-ng/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/crc32.c -------------------------------------------------------------------------------- /ext/zlib-ng/crc32_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/crc32_p.h -------------------------------------------------------------------------------- /ext/zlib-ng/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/deflate.c -------------------------------------------------------------------------------- /ext/zlib-ng/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/deflate.h -------------------------------------------------------------------------------- /ext/zlib-ng/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/gzguts.h -------------------------------------------------------------------------------- /ext/zlib-ng/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/gzlib.c -------------------------------------------------------------------------------- /ext/zlib-ng/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/gzread.c -------------------------------------------------------------------------------- /ext/zlib-ng/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/gzwrite.c -------------------------------------------------------------------------------- /ext/zlib-ng/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/infback.c -------------------------------------------------------------------------------- /ext/zlib-ng/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/inffast.c -------------------------------------------------------------------------------- /ext/zlib-ng/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/inffast.h -------------------------------------------------------------------------------- /ext/zlib-ng/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/inflate.c -------------------------------------------------------------------------------- /ext/zlib-ng/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/inflate.h -------------------------------------------------------------------------------- /ext/zlib-ng/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/inftrees.c -------------------------------------------------------------------------------- /ext/zlib-ng/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/inftrees.h -------------------------------------------------------------------------------- /ext/zlib-ng/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/trees.c -------------------------------------------------------------------------------- /ext/zlib-ng/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/trees.h -------------------------------------------------------------------------------- /ext/zlib-ng/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/uncompr.c -------------------------------------------------------------------------------- /ext/zlib-ng/zbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/zbuild.h -------------------------------------------------------------------------------- /ext/zlib-ng/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/zconf.h -------------------------------------------------------------------------------- /ext/zlib-ng/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/zconf.h.in -------------------------------------------------------------------------------- /ext/zlib-ng/zendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/zendian.h -------------------------------------------------------------------------------- /ext/zlib-ng/zlib-ng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/zlib-ng.h -------------------------------------------------------------------------------- /ext/zlib-ng/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/zlib.h -------------------------------------------------------------------------------- /ext/zlib-ng/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/zlib.map -------------------------------------------------------------------------------- /ext/zlib-ng/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/zlib.pc.in -------------------------------------------------------------------------------- /ext/zlib-ng/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/zutil.c -------------------------------------------------------------------------------- /ext/zlib-ng/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/zutil.h -------------------------------------------------------------------------------- /ext/zlib-ng/zutil_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib-ng/zutil_p.h -------------------------------------------------------------------------------- /ext/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/ChangeLog -------------------------------------------------------------------------------- /ext/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/FAQ -------------------------------------------------------------------------------- /ext/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/INDEX -------------------------------------------------------------------------------- /ext/zlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/LICENSE -------------------------------------------------------------------------------- /ext/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/Makefile -------------------------------------------------------------------------------- /ext/zlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/Makefile.in -------------------------------------------------------------------------------- /ext/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/README -------------------------------------------------------------------------------- /ext/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/adler32.c -------------------------------------------------------------------------------- /ext/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/compress.c -------------------------------------------------------------------------------- /ext/zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/configure -------------------------------------------------------------------------------- /ext/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/crc32.c -------------------------------------------------------------------------------- /ext/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/crc32.h -------------------------------------------------------------------------------- /ext/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/deflate.c -------------------------------------------------------------------------------- /ext/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/deflate.h -------------------------------------------------------------------------------- /ext/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/gzclose.c -------------------------------------------------------------------------------- /ext/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/gzguts.h -------------------------------------------------------------------------------- /ext/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/gzlib.c -------------------------------------------------------------------------------- /ext/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/gzread.c -------------------------------------------------------------------------------- /ext/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/gzwrite.c -------------------------------------------------------------------------------- /ext/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/infback.c -------------------------------------------------------------------------------- /ext/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/inffast.c -------------------------------------------------------------------------------- /ext/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/inffast.h -------------------------------------------------------------------------------- /ext/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/inffixed.h -------------------------------------------------------------------------------- /ext/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/inflate.c -------------------------------------------------------------------------------- /ext/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/inflate.h -------------------------------------------------------------------------------- /ext/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/inftrees.c -------------------------------------------------------------------------------- /ext/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/inftrees.h -------------------------------------------------------------------------------- /ext/zlib/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/make_vms.com -------------------------------------------------------------------------------- /ext/zlib/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/old/README -------------------------------------------------------------------------------- /ext/zlib/os400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/os400/bndsrc -------------------------------------------------------------------------------- /ext/zlib/os400/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/os400/make.sh -------------------------------------------------------------------------------- /ext/zlib/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/treebuild.xml -------------------------------------------------------------------------------- /ext/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/trees.c -------------------------------------------------------------------------------- /ext/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/trees.h -------------------------------------------------------------------------------- /ext/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/uncompr.c -------------------------------------------------------------------------------- /ext/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/zconf.h -------------------------------------------------------------------------------- /ext/zlib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/zconf.h.in -------------------------------------------------------------------------------- /ext/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/zlib.3 -------------------------------------------------------------------------------- /ext/zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /ext/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/zlib.h -------------------------------------------------------------------------------- /ext/zlib/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/zlib.map -------------------------------------------------------------------------------- /ext/zlib/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/zlib.pc.in -------------------------------------------------------------------------------- /ext/zlib/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/zlib2ansi -------------------------------------------------------------------------------- /ext/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/zutil.c -------------------------------------------------------------------------------- /ext/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/ext/zlib/zutil.h -------------------------------------------------------------------------------- /gfx/PdfDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/gfx/PdfDoc.ico -------------------------------------------------------------------------------- /gfx/SumatraPDF.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/gfx/SumatraPDF.ico -------------------------------------------------------------------------------- /gfx/cbx-32bit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/gfx/cbx-32bit.ico -------------------------------------------------------------------------------- /gfx/chm-32bit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/gfx/chm-32bit.ico -------------------------------------------------------------------------------- /gfx/djvu-32bit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/gfx/djvu-32bit.ico -------------------------------------------------------------------------------- /gfx/epub-32bit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/gfx/epub-32bit.ico -------------------------------------------------------------------------------- /gfx/gfxalt/PdfDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/gfx/gfxalt/PdfDoc.ico -------------------------------------------------------------------------------- /gfx/mobi-32bit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/gfx/mobi-32bit.ico -------------------------------------------------------------------------------- /gfx/pdf-32bit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/gfx/pdf-32bit.ico -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/go.sum -------------------------------------------------------------------------------- /go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/go.work -------------------------------------------------------------------------------- /go.work.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/go.work.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/main.go -------------------------------------------------------------------------------- /mupdf/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/.editorconfig -------------------------------------------------------------------------------- /mupdf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/.gitignore -------------------------------------------------------------------------------- /mupdf/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/.gitmodules -------------------------------------------------------------------------------- /mupdf/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/CHANGES -------------------------------------------------------------------------------- /mupdf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/CONTRIBUTORS -------------------------------------------------------------------------------- /mupdf/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/COPYING -------------------------------------------------------------------------------- /mupdf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/Makefile -------------------------------------------------------------------------------- /mupdf/Makelists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/Makelists -------------------------------------------------------------------------------- /mupdf/Makerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/Makerules -------------------------------------------------------------------------------- /mupdf/Makethird: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/Makethird -------------------------------------------------------------------------------- /mupdf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/README -------------------------------------------------------------------------------- /mupdf/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/docs/README -------------------------------------------------------------------------------- /mupdf/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/docs/conf.py -------------------------------------------------------------------------------- /mupdf/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/docs/index.rst -------------------------------------------------------------------------------- /mupdf/docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/docs/license.md -------------------------------------------------------------------------------- /mupdf/docs/man/mupdf.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/docs/man/mupdf.1 -------------------------------------------------------------------------------- /mupdf/docs/reference/c/pdf/index.rst: -------------------------------------------------------------------------------- 1 | PDF 2 | === 3 | 4 | TODO 5 | -------------------------------------------------------------------------------- /mupdf/docs/src/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/docs/src/conf.py -------------------------------------------------------------------------------- /mupdf/platform/java/Application.mk: -------------------------------------------------------------------------------- 1 | ifdef USE_TESSERACT 2 | APP_STL := c++_static 3 | endif 4 | -------------------------------------------------------------------------------- /mupdf/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/pyproject.toml -------------------------------------------------------------------------------- /mupdf/resources/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/resources/README -------------------------------------------------------------------------------- /mupdf/scripts/SECS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/scripts/SECS.TXT -------------------------------------------------------------------------------- /mupdf/scripts/WGL4.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/scripts/WGL4.TXT -------------------------------------------------------------------------------- /mupdf/scripts/jlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/scripts/jlib.py -------------------------------------------------------------------------------- /mupdf/scripts/pipcl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/scripts/pipcl.py -------------------------------------------------------------------------------- /mupdf/scripts/wdev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/scripts/wdev.py -------------------------------------------------------------------------------- /mupdf/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/mupdf/setup.py -------------------------------------------------------------------------------- /mupdf/source/helpers/dummy.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /premake5.files.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/premake5.files.lua -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/premake5.lua -------------------------------------------------------------------------------- /premake5.obsolete.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/premake5.obsolete.lua -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/readme.md -------------------------------------------------------------------------------- /src/Accelerators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Accelerators.cpp -------------------------------------------------------------------------------- /src/Accelerators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Accelerators.h -------------------------------------------------------------------------------- /src/Annotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Annotation.cpp -------------------------------------------------------------------------------- /src/Annotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Annotation.h -------------------------------------------------------------------------------- /src/AppColors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/AppColors.cpp -------------------------------------------------------------------------------- /src/AppColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/AppColors.h -------------------------------------------------------------------------------- /src/AppSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/AppSettings.cpp -------------------------------------------------------------------------------- /src/AppSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/AppSettings.h -------------------------------------------------------------------------------- /src/AppTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/AppTools.cpp -------------------------------------------------------------------------------- /src/AppTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/AppTools.h -------------------------------------------------------------------------------- /src/Canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Canvas.cpp -------------------------------------------------------------------------------- /src/Canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Canvas.h -------------------------------------------------------------------------------- /src/CanvasAboutUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/CanvasAboutUI.cpp -------------------------------------------------------------------------------- /src/Caption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Caption.cpp -------------------------------------------------------------------------------- /src/Caption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Caption.h -------------------------------------------------------------------------------- /src/ChmFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/ChmFile.cpp -------------------------------------------------------------------------------- /src/ChmFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/ChmFile.h -------------------------------------------------------------------------------- /src/ChmModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/ChmModel.cpp -------------------------------------------------------------------------------- /src/ChmModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/ChmModel.h -------------------------------------------------------------------------------- /src/CommandPalette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/CommandPalette.cpp -------------------------------------------------------------------------------- /src/CommandPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/CommandPalette.h -------------------------------------------------------------------------------- /src/Commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Commands.cpp -------------------------------------------------------------------------------- /src/Commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Commands.h -------------------------------------------------------------------------------- /src/CrashHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/CrashHandler.cpp -------------------------------------------------------------------------------- /src/CrashHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/CrashHandler.h -------------------------------------------------------------------------------- /src/DisplayMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/DisplayMode.cpp -------------------------------------------------------------------------------- /src/DisplayMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/DisplayMode.h -------------------------------------------------------------------------------- /src/DisplayModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/DisplayModel.cpp -------------------------------------------------------------------------------- /src/DisplayModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/DisplayModel.h -------------------------------------------------------------------------------- /src/DocController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/DocController.h -------------------------------------------------------------------------------- /src/DocProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/DocProperties.cpp -------------------------------------------------------------------------------- /src/DocProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/DocProperties.h -------------------------------------------------------------------------------- /src/EbookBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/EbookBase.h -------------------------------------------------------------------------------- /src/EbookDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/EbookDoc.cpp -------------------------------------------------------------------------------- /src/EbookDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/EbookDoc.h -------------------------------------------------------------------------------- /src/EbookFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/EbookFormatter.h -------------------------------------------------------------------------------- /src/EngineAll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/EngineAll.h -------------------------------------------------------------------------------- /src/EngineBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/EngineBase.cpp -------------------------------------------------------------------------------- /src/EngineBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/EngineBase.h -------------------------------------------------------------------------------- /src/EngineCreate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/EngineCreate.cpp -------------------------------------------------------------------------------- /src/EngineDjVu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/EngineDjVu.cpp -------------------------------------------------------------------------------- /src/EngineDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/EngineDump.cpp -------------------------------------------------------------------------------- /src/EngineEbook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/EngineEbook.cpp -------------------------------------------------------------------------------- /src/EngineImages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/EngineImages.cpp -------------------------------------------------------------------------------- /src/EngineMupdf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/EngineMupdf.cpp -------------------------------------------------------------------------------- /src/EngineMupdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/EngineMupdf.h -------------------------------------------------------------------------------- /src/EnginePs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/EnginePs.cpp -------------------------------------------------------------------------------- /src/Favorites.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Favorites.cpp -------------------------------------------------------------------------------- /src/Favorites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Favorites.h -------------------------------------------------------------------------------- /src/FileHistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/FileHistory.cpp -------------------------------------------------------------------------------- /src/FileHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/FileHistory.h -------------------------------------------------------------------------------- /src/FileThumbnails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/FileThumbnails.h -------------------------------------------------------------------------------- /src/Flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Flags.cpp -------------------------------------------------------------------------------- /src/Flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Flags.h -------------------------------------------------------------------------------- /src/FzImgReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/FzImgReader.cpp -------------------------------------------------------------------------------- /src/FzImgReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/FzImgReader.h -------------------------------------------------------------------------------- /src/GlobalPrefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/GlobalPrefs.cpp -------------------------------------------------------------------------------- /src/GlobalPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/GlobalPrefs.h -------------------------------------------------------------------------------- /src/HomePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/HomePage.cpp -------------------------------------------------------------------------------- /src/HomePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/HomePage.h -------------------------------------------------------------------------------- /src/HtmlFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/HtmlFormatter.h -------------------------------------------------------------------------------- /src/Installer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Installer.cpp -------------------------------------------------------------------------------- /src/Installer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Installer.h -------------------------------------------------------------------------------- /src/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/MainWindow.cpp -------------------------------------------------------------------------------- /src/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/MainWindow.h -------------------------------------------------------------------------------- /src/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Menu.cpp -------------------------------------------------------------------------------- /src/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Menu.h -------------------------------------------------------------------------------- /src/MobiDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/MobiDoc.cpp -------------------------------------------------------------------------------- /src/MobiDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/MobiDoc.h -------------------------------------------------------------------------------- /src/Notifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Notifications.h -------------------------------------------------------------------------------- /src/PalmDbReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/PalmDbReader.cpp -------------------------------------------------------------------------------- /src/PalmDbReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/PalmDbReader.h -------------------------------------------------------------------------------- /src/PdfCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/PdfCreator.cpp -------------------------------------------------------------------------------- /src/PdfCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/PdfCreator.h -------------------------------------------------------------------------------- /src/PdfSync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/PdfSync.cpp -------------------------------------------------------------------------------- /src/PdfSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/PdfSync.h -------------------------------------------------------------------------------- /src/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Print.cpp -------------------------------------------------------------------------------- /src/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Print.h -------------------------------------------------------------------------------- /src/RenderCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/RenderCache.cpp -------------------------------------------------------------------------------- /src/RenderCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/RenderCache.h -------------------------------------------------------------------------------- /src/Scratch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Scratch.cpp -------------------------------------------------------------------------------- /src/Scratch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Scratch.h -------------------------------------------------------------------------------- /src/SearchAndDDE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/SearchAndDDE.cpp -------------------------------------------------------------------------------- /src/SearchAndDDE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/SearchAndDDE.h -------------------------------------------------------------------------------- /src/Selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Selection.cpp -------------------------------------------------------------------------------- /src/Selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Selection.h -------------------------------------------------------------------------------- /src/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Settings.h -------------------------------------------------------------------------------- /src/StressTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/StressTesting.h -------------------------------------------------------------------------------- /src/SumatraConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/SumatraConfig.h -------------------------------------------------------------------------------- /src/SumatraDialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/SumatraDialogs.h -------------------------------------------------------------------------------- /src/SumatraPDF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/SumatraPDF.cpp -------------------------------------------------------------------------------- /src/SumatraPDF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/SumatraPDF.h -------------------------------------------------------------------------------- /src/SumatraPDF.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/SumatraPDF.rc -------------------------------------------------------------------------------- /src/SvgIcons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/SvgIcons.cpp -------------------------------------------------------------------------------- /src/SvgIcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/SvgIcons.h -------------------------------------------------------------------------------- /src/Tabs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Tabs.cpp -------------------------------------------------------------------------------- /src/Tabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Tabs.h -------------------------------------------------------------------------------- /src/Tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Tester.cpp -------------------------------------------------------------------------------- /src/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Tests.cpp -------------------------------------------------------------------------------- /src/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Tests.h -------------------------------------------------------------------------------- /src/TextSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/TextSearch.cpp -------------------------------------------------------------------------------- /src/TextSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/TextSearch.h -------------------------------------------------------------------------------- /src/TextSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/TextSelection.h -------------------------------------------------------------------------------- /src/Theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Theme.cpp -------------------------------------------------------------------------------- /src/Theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Theme.h -------------------------------------------------------------------------------- /src/Toolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Toolbar.cpp -------------------------------------------------------------------------------- /src/Toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Toolbar.h -------------------------------------------------------------------------------- /src/Translations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Translations.cpp -------------------------------------------------------------------------------- /src/Translations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Translations.h -------------------------------------------------------------------------------- /src/Uninstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Uninstaller.cpp -------------------------------------------------------------------------------- /src/UpdateCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/UpdateCheck.cpp -------------------------------------------------------------------------------- /src/UpdateCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/UpdateCheck.h -------------------------------------------------------------------------------- /src/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/Version.h -------------------------------------------------------------------------------- /src/WindowTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/WindowTab.cpp -------------------------------------------------------------------------------- /src/WindowTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/WindowTab.h -------------------------------------------------------------------------------- /src/dragcursor.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/dragcursor.cur -------------------------------------------------------------------------------- /src/libmupdf.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/libmupdf.def -------------------------------------------------------------------------------- /src/libmupdf.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/libmupdf.rc -------------------------------------------------------------------------------- /src/mui/Mui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/mui/Mui.cpp -------------------------------------------------------------------------------- /src/mui/Mui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/mui/Mui.h -------------------------------------------------------------------------------- /src/mui/TextRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/mui/TextRender.h -------------------------------------------------------------------------------- /src/no_op_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/no_op_console.c -------------------------------------------------------------------------------- /src/reloading.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/reloading.bmp -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/sample_mobi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/sample_mobi.html -------------------------------------------------------------------------------- /src/scratch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/scratch.txt -------------------------------------------------------------------------------- /src/uia/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/uia/Constants.h -------------------------------------------------------------------------------- /src/uia/Provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/uia/Provider.cpp -------------------------------------------------------------------------------- /src/uia/Provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/uia/Provider.h -------------------------------------------------------------------------------- /src/uia/TextRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/uia/TextRange.h -------------------------------------------------------------------------------- /src/utils/Archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/Archive.h -------------------------------------------------------------------------------- /src/utils/BaseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/BaseUtil.h -------------------------------------------------------------------------------- /src/utils/BitManip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/BitManip.h -------------------------------------------------------------------------------- /src/utils/BuildConfig.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/Dict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/Dict.cpp -------------------------------------------------------------------------------- /src/utils/Dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/Dict.h -------------------------------------------------------------------------------- /src/utils/DirIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/DirIter.h -------------------------------------------------------------------------------- /src/utils/Dpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/Dpi.cpp -------------------------------------------------------------------------------- /src/utils/Dpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/Dpi.h -------------------------------------------------------------------------------- /src/utils/FileUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/FileUtil.h -------------------------------------------------------------------------------- /src/utils/GeomUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/GeomUtil.h -------------------------------------------------------------------------------- /src/utils/HttpUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/HttpUtil.h -------------------------------------------------------------------------------- /src/utils/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/Log.cpp -------------------------------------------------------------------------------- /src/utils/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/Log.h -------------------------------------------------------------------------------- /src/utils/Scoped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/Scoped.h -------------------------------------------------------------------------------- /src/utils/StrQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/StrQueue.h -------------------------------------------------------------------------------- /src/utils/StrUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/StrUtil.h -------------------------------------------------------------------------------- /src/utils/StrVec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/StrVec.cpp -------------------------------------------------------------------------------- /src/utils/StrVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/StrVec.h -------------------------------------------------------------------------------- /src/utils/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/Timer.h -------------------------------------------------------------------------------- /src/utils/UITask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/UITask.cpp -------------------------------------------------------------------------------- /src/utils/UITask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/UITask.h -------------------------------------------------------------------------------- /src/utils/UtAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/UtAssert.h -------------------------------------------------------------------------------- /src/utils/Vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/Vec.h -------------------------------------------------------------------------------- /src/utils/WinUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/WinUtil.h -------------------------------------------------------------------------------- /src/utils/ZipUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/utils/ZipUtil.h -------------------------------------------------------------------------------- /src/wingui/Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/wingui/Layout.h -------------------------------------------------------------------------------- /src/wingui/New Text Document.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/wingui/VirtWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/wingui/VirtWnd.h -------------------------------------------------------------------------------- /src/wingui/WebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/wingui/WebView.h -------------------------------------------------------------------------------- /src/wingui/WinGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/src/wingui/WinGui.h -------------------------------------------------------------------------------- /tools/bin2coff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/tools/bin2coff.c -------------------------------------------------------------------------------- /tools/efi/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/tools/efi/Util.cpp -------------------------------------------------------------------------------- /tools/efi/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/tools/efi/Util.h -------------------------------------------------------------------------------- /tools/efi/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/tools/efi/main.cpp -------------------------------------------------------------------------------- /tools/efi/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/tools/efi/readme.txt -------------------------------------------------------------------------------- /tools/logview-web/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /tools/logview-web/dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/logview-web/doit.bat: -------------------------------------------------------------------------------- 1 | go run . %* 2 | -------------------------------------------------------------------------------- /tools/logview-web/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/logview-web/src/version.js: -------------------------------------------------------------------------------- 1 | export const version = "0.2"; 2 | -------------------------------------------------------------------------------- /tools/logview/.gitignore: -------------------------------------------------------------------------------- 1 | build/bin 2 | node_modules 3 | frontend/dist 4 | bun.lockb 5 | -------------------------------------------------------------------------------- /tools/logview/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/tools/logview/app.go -------------------------------------------------------------------------------- /tools/logview/frontend/package.json.md5: -------------------------------------------------------------------------------- 1 | 3330cbf53376f1f16ece71820d311ef1 -------------------------------------------------------------------------------- /tools/logview/frontend/src/version.js: -------------------------------------------------------------------------------- 1 | export const version = "0.2"; 2 | -------------------------------------------------------------------------------- /tools/logview/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/tools/logview/go.mod -------------------------------------------------------------------------------- /tools/logview/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/tools/logview/go.sum -------------------------------------------------------------------------------- /tools/pdfjs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bun.lockb 3 | -------------------------------------------------------------------------------- /tools/regress/go.mod: -------------------------------------------------------------------------------- 1 | module regress 2 | 3 | go 1.22.2 4 | -------------------------------------------------------------------------------- /tools/sizer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/tools/sizer/main.cpp -------------------------------------------------------------------------------- /tools/sizer/parg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/tools/sizer/parg.c -------------------------------------------------------------------------------- /tools/sizer/parg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/tools/sizer/parg.h -------------------------------------------------------------------------------- /tools/test_sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/tools/test_sort.go -------------------------------------------------------------------------------- /vs2022/MakeLZSA.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/vs2022/MakeLZSA.sln -------------------------------------------------------------------------------- /vs2022/chm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/vs2022/chm.vcxproj -------------------------------------------------------------------------------- /vs2022/dav1d.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/vs2022/dav1d.vcxproj -------------------------------------------------------------------------------- /vs2022/mupdf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/vs2022/mupdf.vcxproj -------------------------------------------------------------------------------- /vs2022/sizer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/vs2022/sizer.vcxproj -------------------------------------------------------------------------------- /vs2022/unrar.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/vs2022/unrar.vcxproj -------------------------------------------------------------------------------- /vs2022/utils.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/vs2022/utils.vcxproj -------------------------------------------------------------------------------- /vs2022/zlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sumatrapdfreader/sumatrapdf/HEAD/vs2022/zlib.vcxproj --------------------------------------------------------------------------------