Commit 6e5589e8 by Anthony Green Committed by Anthony Green

zipfile.h (ZipDirectory): Declare size, uncompressed_size, filestart and…

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
parent 7297e9fc
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[...]; */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment