mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-26 15:55:31 +01:00
DirectoryBlob: Make some functions private
This commit is contained in:
parent
b8d8c7370f
commit
b56214789e
@ -36,11 +36,6 @@ public:
|
|||||||
u64 GetRawSize() const override;
|
u64 GetRawSize() const override;
|
||||||
u64 GetDataSize() const override;
|
u64 GetDataSize() const override;
|
||||||
|
|
||||||
void SetGameID(const std::string& id);
|
|
||||||
void SetName(const std::string&);
|
|
||||||
|
|
||||||
void BuildFST();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
DirectoryBlobReader(File::IOFile dol_file, const std::string& root_directory);
|
DirectoryBlobReader(File::IOFile dol_file, const std::string& root_directory);
|
||||||
|
|
||||||
@ -50,10 +45,14 @@ private:
|
|||||||
void SetDiskTypeWii();
|
void SetDiskTypeWii();
|
||||||
void SetDiskTypeGC();
|
void SetDiskTypeGC();
|
||||||
|
|
||||||
bool SetApploader(const std::string& apploader);
|
void SetGameID(const std::string& id);
|
||||||
|
void SetName(const std::string&);
|
||||||
|
|
||||||
|
bool SetApploader(const std::string& apploader);
|
||||||
void SetDOLAndDiskType(File::IOFile dol_file);
|
void SetDOLAndDiskType(File::IOFile dol_file);
|
||||||
|
|
||||||
|
void BuildFST();
|
||||||
|
|
||||||
// writing to read buffer
|
// writing to read buffer
|
||||||
void WriteToBuffer(u64 source_start_address, u64 source_length, const u8* source, u64* address,
|
void WriteToBuffer(u64 source_start_address, u64 source_length, const u8* source, u64* address,
|
||||||
u64* length, u8** buffer) const;
|
u64* length, u8** buffer) const;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user