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

  1. #ifndef _PSXARC_
  2. #define _PSXARC_
  3. extern char *progname;
  4. void ReadArchive(PBUF pb);
  5. void ListArchive(PBUF pb);
  6. void WriteArchive(PBUF pb, int format, char **files, int count);
  7. void *readBlock(int fd);
  8. #define FORMAT_DEFAULT 0
  9. #define FORMAT_CPIO 1
  10. #define FORMAT_TAR 2
  11. #endif // _PSXARC_