mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-18 08:19:59 +00:00
Volume: Make GetTMD return a vector
This commit is contained in:
parent
e638775bc7
commit
cbeb7034eb
9 changed files with 50 additions and 54 deletions
|
@ -7,6 +7,7 @@
|
|||
#include <map>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <mbedtls/aes.h>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
|
@ -25,7 +26,7 @@ public:
|
|||
~CVolumeWiiCrypted();
|
||||
bool Read(u64 _Offset, u64 _Length, u8* _pBuffer, bool decrypt) const override;
|
||||
bool GetTitleID(u64* buffer) const override;
|
||||
std::unique_ptr<u8[]> GetTMD(u32 *_sz) const override;
|
||||
std::vector<u8> GetTMD() const override;
|
||||
std::string GetUniqueID() const override;
|
||||
std::string GetMakerID() const override;
|
||||
u16 GetRevision() const override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue