Change the translation of the "Help" menu item to "?", so that the menu can be displa...
[reactos.git] / rosapps / smartpdf / fitz / include / samus / zip.h
1 /*
2 * ZIP archive
3 */
4
5 typedef struct sa_zip_s sa_zip;
6
7 fz_error *sa_openzip(sa_zip **zipp, char *filename);
8 void sa_debugzip(sa_zip *zip);
9 void sa_closezip(sa_zip *zip);
10 int sa_accesszipentry(sa_zip *zip, char *name);
11 fz_error *sa_openzipentry(fz_stream **stmp, sa_zip *zip, char *name);
12