file_sys: tweaks
This commit is contained in:
parent
c03795300a
commit
83aa38b239
2 changed files with 7 additions and 6 deletions
|
@ -24,9 +24,9 @@ namespace FileSys {
|
|||
class PartitionFilesystem {
|
||||
public:
|
||||
Loader::ResultStatus Load(const std::string& file_path, size_t offset = 0);
|
||||
Loader::ResultStatus Load(const std::vector<u8> file_data, size_t offset = 0);
|
||||
Loader::ResultStatus Load(const std::vector<u8>& file_data, size_t offset = 0);
|
||||
|
||||
u32 GetNumEntries(void) const;
|
||||
u32 GetNumEntries() const;
|
||||
u64 GetEntryOffset(int index) const;
|
||||
u64 GetEntrySize(int index) const;
|
||||
std::string GetEntryName(int index) const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue