add incomplete vms decoder

This commit is contained in:
Martin Michelsen
2023-02-01 10:19:11 -08:00
parent ec453d1fa8
commit 1fdbcd6c4e
4 changed files with 175 additions and 32 deletions
+5
View File
@@ -40,6 +40,7 @@ public:
BIN_DAT = 0,
BIN_DAT_UNCOMPRESSED,
BIN_DAT_GCI,
BIN_DAT_VMS,
BIN_DAT_DLQ,
QST,
};
@@ -75,6 +76,10 @@ public:
const std::string& filename,
ssize_t find_seed_num_threads = -1,
int64_t known_seed = -1);
static std::string decode_vms(
const std::string& filename,
ssize_t find_seed_num_threads = -1,
int64_t known_seed = -1);
static std::string decode_dlq(const std::string& filename);
static std::pair<std::string, std::string> decode_qst(const std::string& filename);