From 8856f8521a42872a95579666b24ecfb65c5a20a1 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Mon, 17 Jun 2013 16:34:58 +0200 Subject: Merge common and internal headers into one. --- apps/mudraw.c | 2 +- apps/pdfapp.h | 3 ++- apps/pdfclean.c | 3 +-- apps/pdfextract.c | 1 - apps/pdfinfo.c | 3 +-- apps/pdfposter.c | 3 +-- apps/pdfshow.c | 2 +- 7 files changed, 7 insertions(+), 10 deletions(-) (limited to 'apps') diff --git a/apps/mudraw.c b/apps/mudraw.c index e38aa99b..366cdb8a 100644 --- a/apps/mudraw.c +++ b/apps/mudraw.c @@ -3,7 +3,7 @@ */ #include "mupdf/fitz.h" -#include "mupdf/pdf-internal.h" /* for mujstest */ +#include "mupdf/pdf.h" /* for mujstest */ #ifdef _MSC_VER #include diff --git a/apps/pdfapp.h b/apps/pdfapp.h index ec87ab12..3e40e0c4 100644 --- a/apps/pdfapp.h +++ b/apps/pdfapp.h @@ -1,7 +1,8 @@ #ifndef PDFAPP_H #define PDFAPP_H -#include "mupdf/pdf-internal.h" +#include "mupdf/fitz.h" +#include "mupdf/pdf.h" /* * Utility object for handling a pdf application / view diff --git a/apps/pdfclean.c b/apps/pdfclean.c index 8d1748ae..3c1e810e 100644 --- a/apps/pdfclean.c +++ b/apps/pdfclean.c @@ -9,8 +9,7 @@ * TODO: linearize document for fast web view */ -#include "mupdf/fitz.h" -#include "mupdf/pdf-internal.h" +#include "mupdf/pdf.h" static pdf_document *xref = NULL; static fz_context *ctx = NULL; diff --git a/apps/pdfextract.c b/apps/pdfextract.c index d82f045b..e30b8268 100644 --- a/apps/pdfextract.c +++ b/apps/pdfextract.c @@ -3,7 +3,6 @@ */ #include "mupdf/pdf.h" -#include "mupdf/pdf-internal.h" static pdf_document *doc = NULL; static fz_context *ctx = NULL; diff --git a/apps/pdfinfo.c b/apps/pdfinfo.c index fdc23e99..fa21431e 100644 --- a/apps/pdfinfo.c +++ b/apps/pdfinfo.c @@ -3,8 +3,7 @@ * Print information about the input pdf. */ -#include "mupdf/fitz.h" -#include "mupdf/pdf-internal.h" +#include "mupdf/pdf.h" pdf_document *xref; fz_context *ctx; diff --git a/apps/pdfposter.c b/apps/pdfposter.c index c92de7aa..050a497f 100644 --- a/apps/pdfposter.c +++ b/apps/pdfposter.c @@ -9,8 +9,7 @@ * TODO: linearize document for fast web view */ -#include "mupdf/fitz.h" -#include "mupdf/pdf-internal.h" +#include "mupdf/pdf.h" static int x_factor = 0; static int y_factor = 0; diff --git a/apps/pdfshow.c b/apps/pdfshow.c index 78573e10..586a2fc6 100644 --- a/apps/pdfshow.c +++ b/apps/pdfshow.c @@ -2,7 +2,7 @@ * pdfshow -- the ultimate pdf debugging tool */ -#include "mupdf/pdf-internal.h" +#include "mupdf/pdf.h" static pdf_document *doc = NULL; static fz_context *ctx = NULL; -- cgit v1.2.3