summaryrefslogtreecommitdiff
path: root/ios/document.h
diff options
context:
space:
mode:
Diffstat (limited to 'ios/document.h')
-rw-r--r--ios/document.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/ios/document.h b/ios/document.h
deleted file mode 100644
index b4555578..00000000
--- a/ios/document.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef DOCUMENT_H
-#define DOCUMENT_H
-
-struct document
-{
- fz_context *ctx;
- pdf_document *pdf;
- xps_document *xps;
- cbz_document *cbz;
- int number;
- pdf_page *pdf_page;
- xps_page *xps_page;
- cbz_page *cbz_page;
- fz_bbox hit_bbox[500];
- int hit_count;
-};
-
-struct document *open_document(fz_context *ctx, char *filename);
-int needs_password(struct document *doc);
-int authenticate_password(struct document *doc, char *password);
-fz_outline *load_outline(struct document *doc);
-int count_pages(struct document *doc);
-void measure_page(struct document *doc, int number, float *w, float *h);
-void draw_page(struct document *doc, int number, fz_device *dev, fz_matrix ctm, fz_cookie *cookie);
-int search_page(struct document *doc, int number, char *needle, fz_cookie *cookie);
-fz_bbox search_result_bbox(struct document *doc, int i);
-void close_document(struct document *doc);
-
-#endif