Changeset 95239 in vbox for trunk/src/libs/zlib-1.2.12/contrib/minizip/zip.h
- Timestamp:
- Jun 9, 2022 9:09:44 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151769
- Location:
- trunk/src/libs/zlib-1.2.12
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/zlib-1.2.12
- Property svn:mergeinfo
-
old new 20 20 /branches/dsen/gui3/src/libs/zlib-1.2.11:79645-79692 21 21 /trunk/src/src/libs/zlib-1.2.11:92342 22 /vendor/zlib/1.2.12:151751 23 /vendor/zlib/current:150724-151750
-
- Property svn:mergeinfo
-
trunk/src/libs/zlib-1.2.12/contrib/minizip/zip.h
r76163 r95239 89 89 typedef struct tm_zip_s 90 90 { 91 uInt tm_sec;/* seconds after the minute - [0,59] */92 uInt tm_min;/* minutes after the hour - [0,59] */93 uInt tm_hour;/* hours since midnight - [0,23] */94 uInt tm_mday;/* day of the month - [1,31] */95 uInt tm_mon;/* months since January - [0,11] */96 uInt tm_year;/* years - [1980..2044] */91 int tm_sec; /* seconds after the minute - [0,59] */ 92 int tm_min; /* minutes after the hour - [0,59] */ 93 int tm_hour; /* hours since midnight - [0,23] */ 94 int tm_mday; /* day of the month - [1,31] */ 95 int tm_mon; /* months since January - [0,11] */ 96 int tm_year; /* years - [1980..2044] */ 97 97 } tm_zip; 98 98 … … 144 144 zipcharpc* globalcomment, 145 145 zlib_filefunc64_def* pzlib_filefunc_def)); 146 147 extern zipFile ZEXPORT zipOpen3 OF((const void *pathname, 148 int append, 149 zipcharpc* globalcomment, 150 zlib_filefunc64_32_def* pzlib_filefunc64_32_def)); 146 151 147 152 extern int ZEXPORT zipOpenNewFileInZip OF((zipFile file,
Note:
See TracChangeset
for help on using the changeset viewer.