Skip to content

Commit edaecd1

Browse files
halx99minggo
authored andcommitted
Remove incompatible API 'unzOpenBuffer' width minizip-1.2.0 (#381)
* Remove * Update unzip.cpp
1 parent 6f26d02 commit edaecd1

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

unzip/unzip.cpp

-8
Original file line numberDiff line numberDiff line change
@@ -534,14 +534,6 @@ extern unzFile ZEXPORT unzOpen64(const void *path)
534534
return unzOpenInternal(path, NULL);
535535
}
536536

537-
extern unzFile ZEXPORT unzOpenBuffer(const void* buffer, uLong size)
538-
{
539-
zlib_filefunc_def memory_file = { 0 };
540-
ourmemory_s oms = { (char*)const_cast<void*>(buffer), static_cast<uint32_t>(size), 0, 0, 0};
541-
fill_memory_filefunc(&memory_file, &oms);
542-
return unzOpen2(nullptr, &memory_file);
543-
}
544-
545537
extern int ZEXPORT unzClose(unzFile file)
546538
{
547539
unz64_internal *s;

unzip/unzip.h

-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ typedef struct unz_file_info_s
119119

120120
extern unzFile ZEXPORT unzOpen(const char *path);
121121
extern unzFile ZEXPORT unzOpen64(const void *path);
122-
extern unzFile ZEXPORT unzOpenBuffer(const void* buffer, uLong size);
123122
/* Open a Zip file.
124123
125124
path should contain the full path (by example, on a Windows XP computer

0 commit comments

Comments
 (0)