zipfile.h (ZipDirectory): Declare size, uncompressed_size, filestart and filename_length as int values.

* zipfile.h (ZipDirectory): Declare size, uncompressed_size,
	filestart and filename_length as int values.

From-SVN: r38165
This commit is contained in:
Anthony Green 2000-12-10 03:53:33 +00:00 committed by Anthony Green
parent 7297e9fc9a
commit 6e5589e8ad
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2000-12-09 Anthony Green <green@redhat.com>
* zipfile.h (ZipDirectory): Declare size, uncompressed_size,
filestart and filename_length as int values.
2000-12-07 Zack Weinberg <zack@wolery.stanford.edu>
* jvgenmain.c: Use ISPRINT not isascii.

View File

@ -35,10 +35,10 @@ struct ZipDirectory {
int direntry_size;
int filename_offset;
int compression_method;
long size; /* length of file */
long uncompressed_size; /* length of uncompressed data */
long filestart; /* start of file in archive */
long filename_length;
unsigned size; /* length of file */
unsigned uncompressed_size; /* length of uncompressed data */
unsigned filestart; /* start of file in archive */
int filename_length;
/* char mid_padding[...]; */
/* char filename[filename_length]; */
/* char end_padding[...]; */