Subversion Repositories SvarDOS

Rev

Rev 614 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 614 Rev 1964
Line 30... Line 30...
30
  unsigned char flags;  /* see ZIP_FLAG_xxx above */
30
  unsigned char flags;  /* see ZIP_FLAG_xxx above */
31
  char filename[1];     /* must be last element (gets expanded at runtime) */
31
  char filename[1];     /* must be last element (gets expanded at runtime) */
32
};
32
};
33
 
33
 
34
struct ziplist *zip_listfiles(FILE *fd);
34
struct ziplist *zip_listfiles(FILE *fd);
35
int zip_unzip(FILE *zipfd, struct ziplist *curzipnode, const char *fulldestfilename);
35
int zip_unzip(FILE *zipfd, struct ziplist *curzipnode, const char *fulldestfilename, unsigned char *buff15k);
36
void zip_freelist(struct ziplist **ziplist);
36
void zip_freelist(struct ziplist **ziplist);
37
 
37
 
38
#endif
38
#endif