Add support for processing tape partition metadata blocks

This commit is contained in:
2025-10-07 14:40:57 +01:00
parent 778dcd8d31
commit ca60bc53ed
4 changed files with 232 additions and 3 deletions

View File

@@ -388,6 +388,9 @@ void *aaruf_open(const char *filepath)
case TapeFileBlock:
process_tape_files_block(ctx, entry);
case TapePartitionBlock:
process_tape_partitions_block(ctx, entry);
default:
TRACE("Unhandled block type %4.4s with data type %d is indexed to be at %" PRIu64 "",
(char *)&entry->blockType, entry->dataType, entry->offset);