Add support for processing tape files and update context structures

This commit is contained in:
2025-10-07 11:30:11 +01:00
parent 01152f5c25
commit f62899ed06
5 changed files with 236 additions and 1 deletions

View File

@@ -385,6 +385,9 @@ void *aaruf_open(const char *filepath)
process_checksum_block(ctx, entry);
break;
case TapeFileBlock:
process_tape_files_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);