summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2013-06-12 13:46:21 +0200
committerTor Andersson <tor.andersson@artifex.com>2013-06-18 00:06:46 +0200
commit03e5755b93e90cc4c09daad4c79b6016bf4ce43c (patch)
treed2992e30fcddf864ad64bd026884e79d92903977 /apps
parentb695c87abcdbe0ddc35c5e3a7ee8f5f58ee577f1 (diff)
downloadmupdf-03e5755b93e90cc4c09daad4c79b6016bf4ce43c.tar.xz
Move header files into separate include directory.
Diffstat (limited to 'apps')
-rw-r--r--apps/mudraw.c4
-rw-r--r--apps/mutool.c2
-rw-r--r--apps/pdfapp.h3
-rw-r--r--apps/pdfclean.c4
-rw-r--r--apps/pdfextract.c4
-rw-r--r--apps/pdfinfo.c4
-rw-r--r--apps/pdfposter.c4
-rw-r--r--apps/pdfshow.c2
-rw-r--r--apps/x11_image.c2
9 files changed, 14 insertions, 15 deletions
diff --git a/apps/mudraw.c b/apps/mudraw.c
index f2fa53a7..e38aa99b 100644
--- a/apps/mudraw.c
+++ b/apps/mudraw.c
@@ -2,8 +2,8 @@
* mudraw -- command line tool for drawing pdf/xps/cbz documents
*/
-#include "fitz.h"
-#include "mupdf-internal.h"
+#include "mupdf/fitz.h"
+#include "mupdf/pdf-internal.h" /* for mujstest */
#ifdef _MSC_VER
#include <winsock2.h>
diff --git a/apps/mutool.c b/apps/mutool.c
index 1d7fb9dd..62355f32 100644
--- a/apps/mutool.c
+++ b/apps/mutool.c
@@ -2,7 +2,7 @@
* mutool -- swiss army knife of pdf manipulation tools
*/
-#include <fitz.h>
+#include "mupdf/fitz.h"
#ifdef _MSC_VER
#define main main_utf8
diff --git a/apps/pdfapp.h b/apps/pdfapp.h
index 9c8a0ee9..ec87ab12 100644
--- a/apps/pdfapp.h
+++ b/apps/pdfapp.h
@@ -1,8 +1,7 @@
#ifndef PDFAPP_H
#define PDFAPP_H
-#include "fitz.h"
-#include "mupdf-internal.h"
+#include "mupdf/pdf-internal.h"
/*
* Utility object for handling a pdf application / view
diff --git a/apps/pdfclean.c b/apps/pdfclean.c
index 78570650..8d1748ae 100644
--- a/apps/pdfclean.c
+++ b/apps/pdfclean.c
@@ -9,8 +9,8 @@
* TODO: linearize document for fast web view
*/
-#include "fitz.h"
-#include "mupdf-internal.h"
+#include "mupdf/fitz.h"
+#include "mupdf/pdf-internal.h"
static pdf_document *xref = NULL;
static fz_context *ctx = NULL;
diff --git a/apps/pdfextract.c b/apps/pdfextract.c
index f17edff2..d82f045b 100644
--- a/apps/pdfextract.c
+++ b/apps/pdfextract.c
@@ -2,8 +2,8 @@
* pdfextract -- the ultimate way to extract images and fonts from pdfs
*/
-#include "mupdf.h"
-#include "mupdf-internal.h"
+#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 18463304..fdc23e99 100644
--- a/apps/pdfinfo.c
+++ b/apps/pdfinfo.c
@@ -3,8 +3,8 @@
* Print information about the input pdf.
*/
-#include "fitz.h"
-#include "mupdf-internal.h"
+#include "mupdf/fitz.h"
+#include "mupdf/pdf-internal.h"
pdf_document *xref;
fz_context *ctx;
diff --git a/apps/pdfposter.c b/apps/pdfposter.c
index b9514892..c92de7aa 100644
--- a/apps/pdfposter.c
+++ b/apps/pdfposter.c
@@ -9,8 +9,8 @@
* TODO: linearize document for fast web view
*/
-#include "fitz.h"
-#include "mupdf-internal.h"
+#include "mupdf/fitz.h"
+#include "mupdf/pdf-internal.h"
static int x_factor = 0;
static int y_factor = 0;
diff --git a/apps/pdfshow.c b/apps/pdfshow.c
index 02cf6dbb..78573e10 100644
--- a/apps/pdfshow.c
+++ b/apps/pdfshow.c
@@ -2,7 +2,7 @@
* pdfshow -- the ultimate pdf debugging tool
*/
-#include "mupdf-internal.h"
+#include "mupdf/pdf-internal.h"
static pdf_document *doc = NULL;
static fz_context *ctx = NULL;
diff --git a/apps/x11_image.c b/apps/x11_image.c
index e8cd4455..4f2db2e8 100644
--- a/apps/x11_image.c
+++ b/apps/x11_image.c
@@ -12,7 +12,7 @@
#define noSHOWINFO
-#include "fitz.h"
+#include "mupdf/fitz.h"
#include <X11/Xlib.h>
#include <X11/Xutil.h>