Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
293 B

#ifndef _PSXARC_
#define _PSXARC_
extern char *progname;
void ReadArchive(PBUF pb);
void ListArchive(PBUF pb);
void WriteArchive(PBUF pb, int format, char **files, int count);
void *readBlock(int fd);
#define FORMAT_DEFAULT 0
#define FORMAT_CPIO 1
#define FORMAT_TAR 2
#endif // _PSXARC_