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:
parent
7297e9fc9a
commit
6e5589e8ad
@ -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.
|
||||
|
@ -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[...]; */
|
||||
|
Loading…
x
Reference in New Issue
Block a user