diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-09-27 02:15:04 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-09-27 02:15:04 +0200 |
commit | 6ddde92a3a45e970b05770633dc6a337d5d013c5 (patch) | |
tree | 1dec4612d7469839478e72d16d30a0da5755243c /include/fitz.h | |
download | mupdf-6ddde92a3a45e970b05770633dc6a337d5d013c5.tar.xz |
Initial import
Diffstat (limited to 'include/fitz.h')
-rw-r--r-- | include/fitz.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/fitz.h b/include/fitz.h new file mode 100644 index 00000000..20c105db --- /dev/null +++ b/include/fitz.h @@ -0,0 +1,30 @@ +#ifdef _FITZ_H_ +#error "fitz.h must only be included once" +#endif +#define _FITZ_H_ + +#include "fitz/sysdep.h" + +#include "fitz/base.h" +#include "fitz/math.h" +#include "fitz/geometry.h" +#include "fitz/hash.h" +#include "fitz/crypt.h" + +#include "fitz/object.h" + +#include "fitz/filter.h" +#include "fitz/file.h" + +#include "fitz/cmap.h" +#include "fitz/font.h" + +#include "fitz/tree.h" +#include "fitz/path.h" +#include "fitz/text.h" +#include "fitz/image.h" + +#include "fitz/pixmap.h" +#include "fitz/scanconv.h" +#include "fitz/render.h" + |