mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
DiscIO: Add CreateDisc/WAD/Volume() overloads that take a BlobReader directly.
This commit is contained in:
parent
e3f1de023f
commit
09fc39e2e5
2 changed files with 31 additions and 14 deletions
|
@ -182,8 +182,11 @@ protected:
|
|||
static const std::vector<u8> INVALID_CERT_CHAIN;
|
||||
};
|
||||
|
||||
std::unique_ptr<VolumeDisc> CreateDisc(std::unique_ptr<BlobReader> reader);
|
||||
std::unique_ptr<VolumeDisc> CreateDisc(const std::string& path);
|
||||
std::unique_ptr<VolumeWAD> CreateWAD(std::unique_ptr<BlobReader> reader);
|
||||
std::unique_ptr<VolumeWAD> CreateWAD(const std::string& path);
|
||||
std::unique_ptr<Volume> CreateVolume(std::unique_ptr<BlobReader> reader);
|
||||
std::unique_ptr<Volume> CreateVolume(const std::string& path);
|
||||
|
||||
} // namespace DiscIO
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue