summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/mupdf/fitz/document.h2
-rw-r--r--include/mupdf/pdf/document.h3
2 files changed, 0 insertions, 5 deletions
diff --git a/include/mupdf/fitz/document.h b/include/mupdf/fitz/document.h
index f633fdbe..9d8a60a6 100644
--- a/include/mupdf/fitz/document.h
+++ b/include/mupdf/fitz/document.h
@@ -82,7 +82,6 @@ struct fz_document_handler_s
};
extern fz_document_handler pdf_document_handler;
-extern fz_document_handler pdf_no_run_document_handler;
extern fz_document_handler xps_document_handler;
extern fz_document_handler cbz_document_handler;
extern fz_document_handler img_document_handler;
@@ -93,7 +92,6 @@ extern fz_document_handler epub_document_handler;
void fz_register_document_handler(fz_context *ctx, const fz_document_handler *handler);
void fz_register_document_handlers(fz_context *ctx);
-void fz_register_no_run_document_handlers(fz_context *ctx);
/*
fz_open_document: Open a PDF, XPS or CBZ document.
diff --git a/include/mupdf/pdf/document.h b/include/mupdf/pdf/document.h
index 2d7313ee..49f674a7 100644
--- a/include/mupdf/pdf/document.h
+++ b/include/mupdf/pdf/document.h
@@ -85,9 +85,6 @@ pdf_document *pdf_open_document(fz_context *ctx, const char *filename);
*/
pdf_document *pdf_open_document_with_stream(fz_context *ctx, fz_stream *file);
-pdf_document *pdf_open_document_no_run(fz_context *ctx, const char *filename);
-pdf_document *pdf_open_document_no_run_with_stream(fz_context *ctx, fz_stream *file);
-
/*
pdf_close_document: Closes and frees an opened PDF document.