]> www.fi.muni.cz Git - evince.git/blob - impress/zip.h
23ff36319e09695da6ee2ef51080ed0e2b4f1db5
[evince.git] / impress / zip.h
1 /* imposter (OO.org Impress viewer)
2 ** Copyright (C) 2003-2005 Gurer Ozen
3 ** This code is free software; you can redistribute it and/or
4 ** modify it under the terms of GNU General Public License.
5 */
6
7 struct zip_struct;
8 typedef struct zip_struct zip;
9
10 char *zip_error (int err);
11
12 zip *zip_open (const char *fname, int *err);
13 void zip_close (zip *z);
14
15 iks *zip_load_xml (zip *z, const char *name, int *err);
16
17 unsigned long zip_get_size (zip *z, const char *name);
18 int zip_load (zip *z, const char *name, char *buf);