which included commits to RCS files with non-trunk default branches. git-svn-id: svn://10.65.10.50/trunk@5403 c028cbd2-c16b-5b4b-a496-9718f37d4682
64 lines
2.7 KiB
C
Executable File
64 lines
2.7 KiB
C
Executable File
/*
|
|
|
|
Copyright (C) 1990-1996 Mark Adler, Richard B. Wales, Jean-loup Gailly,
|
|
Kai Uwe Rommel, Onno van der Linden and Igor Mandrichenko.
|
|
Permission is granted to any individual or institution to use, copy, or
|
|
redistribute this software so long as all of the original files are included,
|
|
that it is not sold for profit, and that this copyright notice is retained.
|
|
|
|
*/
|
|
|
|
/*
|
|
* ziperr.h by Mark Adler.
|
|
*/
|
|
|
|
/* Error return values. The values 0..4 and 12..18 follow the conventions
|
|
of PKZIP. The values 4..10 are all assigned to "insufficient memory"
|
|
by PKZIP, so the codes 5..10 are used here for other purposes. */
|
|
#define ZE_MISS -1 /* used by procname(), zipbare() */
|
|
#define ZE_OK 0 /* success */
|
|
#define ZE_EOF 2 /* unexpected end of zip file */
|
|
#define ZE_FORM 3 /* zip file structure error */
|
|
#define ZE_MEM 4 /* out of memory */
|
|
#define ZE_LOGIC 5 /* internal logic error */
|
|
#define ZE_BIG 6 /* entry too large to split */
|
|
#define ZE_NOTE 7 /* invalid comment format */
|
|
#define ZE_TEST 8 /* zip test (-T) failed or out of memory */
|
|
#define ZE_ABORT 9 /* user interrupt or termination */
|
|
#define ZE_TEMP 10 /* error using a temp file */
|
|
#define ZE_READ 11 /* read or seek error */
|
|
#define ZE_NONE 12 /* nothing to do */
|
|
#define ZE_NAME 13 /* missing or empty zip file */
|
|
#define ZE_WRITE 14 /* error writing to a file */
|
|
#define ZE_CREAT 15 /* couldn't open to write */
|
|
#define ZE_PARMS 16 /* bad command line */
|
|
#define ZE_OPEN 18 /* could not open a specified file to read */
|
|
/* Macro to determine whether to call perror() or not */
|
|
#define PERR(e) (e==ZE_READ||e==ZE_WRITE||e==ZE_CREAT||e==ZE_TEMP||e==ZE_OPEN)
|
|
|
|
#ifdef GLOBALS
|
|
/* Error messages for the ziperr() function in the zip programs */
|
|
char *errors[] = {
|
|
/* 1 */ "",
|
|
/* 2 */ "Unexpected end of zip file",
|
|
/* 3 */ "Zip file structure invalid",
|
|
/* 4 */ "Out of memory",
|
|
/* 5 */ "Internal logic error",
|
|
/* 6 */ "Entry too big to split",
|
|
/* 7 */ "Invalid comment format",
|
|
/* 8 */ "Zip file invalid or could not spawn unzip",
|
|
/* 9 */ "Interrupted",
|
|
/* 10 */ "Temporary file failure",
|
|
/* 11 */ "Input file read failure",
|
|
/* 12 */ "Nothing to do!",
|
|
/* 13 */ "Missing or empty zip file",
|
|
/* 14 */ "Output file write failure",
|
|
/* 15 */ "Could not create output file",
|
|
/* 16 */ "Invalid command arguments",
|
|
/* 17 */ "",
|
|
/* 18 */ "File not found or no read permission",
|
|
};
|
|
#else /* !GLOBALS */
|
|
extern char *errors[]; /* Error messages for ziperr() */
|
|
#endif /* ?GLOBALS */
|