In my case it is file: ../fpc/packages/paszlib/src/unzip.pas - 45.5kB
Header:
unit Unzip;
{ ----------------------------------------------------------------- }
{ unzip.c -- IO on .zip files using zlib
Version 0.15 beta, Mar 19th, 1998,
unzip.h -- IO for uncompress .zip files using zlib
Version 0.15 beta, Mar 19th, 1998,
Copyright (C) 1998 Gilles Vollant <info@winimage.com>
http://www.winimage.com/zLibDll/zip.htm
This unzip package allow extract file from .ZIP file, compatible
with PKZip 2.04g, WinZip, InfoZip tools and compatible.
Encryption and multi volume ZipFile (span) are not supported.
Old compressions used by old PKZip 1.x are not supported
Pascal tranlastion
Copyright (C) 2000 by Jacques Nomssi Nzali
For conditions of distribution and use, see copyright notice in readme.txt }
and declaration on line 67
{ unz_file_info contain information about a file in the zipfile }
type
unz_file_info = record
version: longint; { version made by 2 bytes }
version_needed: longint; { version needed to extract 2 bytes }
flag: longint; { general purpose bit flag 2 bytes }
compression_method: longint; { compression method 2 bytes }
dosDate: longint; { last mod file date in Dos fmt 4 bytes }
crc: longint; { crc-32 4 bytes }
compressed_size: longint; { compressed size 4 bytes }
uncompressed_size: longint; { uncompressed size 4 bytes }
size_filename: longint; { filename length 2 bytes }
size_file_extra: longint; { extra field length 2 bytes }
size_file_comment: longint; { file comment length 2 bytes }
disk_num_start: longint; { disk number start 2 bytes }
internal_fa: longint; { internal file attributes 2 bytes }
external_fa: longint; { external file attributes 4 bytes }
tmu_date: tm_unz;
end;
unz_file_info_ptr = ^unz_file_info;
If it will help you.