]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - tools/quake3/common/miniz.h
Q3map2:
[xonotic/netradiant.git] / tools / quake3 / common / miniz.h
index 397da296ef8435cd33214fab12e06fdf24de361a..7e1e04c3d813bbbb375e5f89cefcb0f6a054b8bd 100644 (file)
@@ -669,6 +669,7 @@ mz_bool mz_zip_writer_end(mz_zip_archive *pZip);
 // mz_zip_add_mem_to_archive_file_in_place() efficiently (but not atomically) appends a memory blob to a ZIP archive.
 // level_and_flags - compression level (0-10, see MZ_BEST_SPEED, MZ_BEST_COMPRESSION, etc.) logically OR'd with zero or more mz_zip_flags, or just set to MZ_DEFAULT_COMPRESSION.
 mz_bool mz_zip_add_mem_to_archive_file_in_place(const char *pZip_filename, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags);
+mz_bool mz_zip_add_mem_to_archive_file_in_place_with_time(const char *pZip_filename, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, mz_uint16 dos_time, mz_uint16 dos_date);
 
 // Reads a single file from an archive into a heap block.
 // Returns NULL on failure.