mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-22 02:09:06 +00:00
VolumeVerifier: Check hashes in Wii partitions
This commit is contained in:
parent
84cbd5150f
commit
4fd2d8e8c4
7 changed files with 184 additions and 116 deletions
|
@ -99,7 +99,11 @@ public:
|
|||
}
|
||||
virtual Platform GetVolumeType() const = 0;
|
||||
virtual bool SupportsIntegrityCheck() const { return false; }
|
||||
virtual bool CheckIntegrity(const Partition& partition) const { return false; }
|
||||
virtual bool CheckH3TableIntegrity(const Partition& partition) const { return false; }
|
||||
virtual bool CheckBlockIntegrity(u64 block_index, const Partition& partition) const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
virtual Region GetRegion() const = 0;
|
||||
virtual Country GetCountry(const Partition& partition = PARTITION_NONE) const = 0;
|
||||
virtual BlobType GetBlobType() const = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue