blob: 9642f009294fbfd3783c6488f0525d9065e3a9f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
//
// common.h
// MuPDF
//
// Copyright (c) 2013 Artifex Software, Inc. All rights reserved.
//
#ifndef MuPDF_common_h
#define MuPDF_common_h
#include <UIKit/UIKit.h>
#undef ABS
#undef MIN
#undef MAX
#include "mupdf/fitz.h"
#include "dispatch/dispatch.h"
extern fz_context *ctx;
extern dispatch_queue_t queue;
extern float screenScale;
CGSize fitPageToScreen(CGSize page, CGSize screen);
int search_page(fz_document *doc, int number, char *needle, fz_cookie *cookie);
fz_rect search_result_bbox(fz_document *doc, int i);
#endif
|