summaryrefslogtreecommitdiff
path: root/include/samus.h
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2005-05-20 16:24:09 +0200
committerTor Andersson <tor@ghostscript.com>2005-05-20 16:24:09 +0200
commit7973f7fed6475ebade8b94e269c4df29296e32a3 (patch)
tree255d0900a2e1253b4e640919acb4604f53a6b2a6 /include/samus.h
parent143a2db01c7bb9ea7194299ac382bd780fd94548 (diff)
downloadmupdf-7973f7fed6475ebade8b94e269c4df29296e32a3.tar.xz
xml mini-dom using expat
Diffstat (limited to 'include/samus.h')
-rw-r--r--include/samus.h29
1 files changed, 2 insertions, 27 deletions
diff --git a/include/samus.h b/include/samus.h
index c90b8cad..215fe573 100644
--- a/include/samus.h
+++ b/include/samus.h
@@ -7,31 +7,6 @@
#error "fitz.h must be included before samus.h"
#endif
-/*
- * ZIP archive
- */
-
-typedef struct sa_zip_s sa_zip;
-typedef struct sa_zipent_s sa_zipent;
-
-struct sa_zipent_s
-{
- unsigned offset;
- unsigned csize;
- unsigned usize;
- char *name;
-};
-
-struct sa_zip_s
-{
- fz_file *file;
- int len;
- sa_zipent *table;
-};
-
-fz_error *sa_openzip(sa_zip **zipp, char *filename);
-void sa_debugzip(sa_zip *zip);
-void sa_closezip(sa_zip *zip);
-fz_error *sa_openzipstream(sa_zip *zip, char *name);
-void sa_closezipstream(sa_zip *zip);
+#include "samus/zip.h"
+#include "samus/xml.h"