MCPcopy Create free account
hub / github.com/defold/defold / GetEntryIndex

Function GetEntryIndex

engine/dlib/src/dlib/zip.cpp:79–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77}
78
79Result GetEntryIndex(HZip zip, uint32_t* out_index)
80{
81 int index = zip_entry_index(zip);
82 if (index < 0)
83 return RESULT_NO_SUCH_ENTRY;
84 *out_index = (uint32_t)index;
85 return RESULT_OK;
86}
87
88Result GetEntryData(HZip zip, void* buffer, uint32_t buffer_size)
89{

Callers 1

CreateEntryMapFunction · 0.85

Calls 1

zip_entry_indexFunction · 0.85

Tested by

no test coverage detected