zip-reader: Read the whole central directory at .zip open time.
[pspp] / src / libpspp / zip-reader.h
index 05642ffdc0ca2c442eef14a070d3b3a878d3f9e0..842864143df3384ad14d92ad66cc73e1fef7c727 100644 (file)
@@ -22,8 +22,6 @@ struct zip_member;
 struct zip_reader;
 struct string;
 
-void zm_dump (const struct zip_member *zm);
-
 /* Create zip reader to read the file called FILENAME.
    If ERRS is non-null if will be used to contain any error messages
    which the reader wishes to report.
@@ -40,12 +38,6 @@ struct zip_member *zip_member_open (struct zip_reader *zr, const char *member);
    Returns the number of bytes read, or -1 on error */
 int zip_member_read (struct zip_member *zm, void *buf, size_t n);
 
-/* Unref (and possibly destroy) the zip member ZM */
-void zip_member_unref (struct zip_member *zm);
-
-/* Ref the zip member */
-void zip_member_ref (struct zip_member *zm);
-
 void zip_member_finish (struct zip_member *zm);