| 77 | } |
| 78 | |
| 79 | Result 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 | |
| 88 | Result GetEntryData(HZip zip, void* buffer, uint32_t buffer_size) |
| 89 | { |
no test coverage detected