MCPcopy Create free account
hub / github.com/CodingGay/BlackDex / OpenArchiveFromMemory

Function OpenArchiveFromMemory

Bcore/src/main/cpp/ziparchive/zip_archive.cc:444–449  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

442}
443
444int32_t OpenArchiveFromMemory(void* address, size_t length, const char* debug_file_name,
445 ZipArchiveHandle* handle) {
446 ZipArchive* archive = new ZipArchive(address, length);
447 *handle = archive;
448 return OpenArchiveInternal(archive, debug_file_name);
449}
450
451/*
452 * Close a ZipArchive, closing the file and freeing the contents.

Callers 1

OpenMethod · 0.85

Calls 1

OpenArchiveInternalFunction · 0.85

Tested by

no test coverage detected