diff options
| author | Fernando S <fsahmkow27@gmail.com> | 2023-08-21 16:29:04 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-21 16:29:04 +0200 |
| commit | 861597eb2e32663dba37813273ff91434566523a (patch) | |
| tree | a05b7c596209f754a822c03cca162c6f32b6a565 /src/core/hle/service/filesystem/filesystem.h | |
| parent | 6a5db5679b61d3d73244e42682f1b34d401e7736 (diff) | |
| parent | 775bf8e215c8c771b45f383b0b2ce46fa37ebe95 (diff) | |
Merge pull request #11284 from liamwhite/nca-release
vfs: expand support for NCA reading
Diffstat (limited to 'src/core/hle/service/filesystem/filesystem.h')
| -rw-r--r-- | src/core/hle/service/filesystem/filesystem.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/filesystem/filesystem.h b/src/core/hle/service/filesystem/filesystem.h index fd991f976..e7e7c4c28 100644 --- a/src/core/hle/service/filesystem/filesystem.h +++ b/src/core/hle/service/filesystem/filesystem.h @@ -15,6 +15,7 @@ class System; namespace FileSys { class BISFactory; +class NCA; class RegisteredCache; class RegisteredCacheUnion; class PlaceholderCache; @@ -70,6 +71,8 @@ public: FileSys::ContentRecordType type) const; FileSys::VirtualFile OpenRomFS(u64 title_id, FileSys::StorageId storage_id, FileSys::ContentRecordType type) const; + std::shared_ptr<FileSys::NCA> OpenBaseNca(u64 title_id, FileSys::StorageId storage_id, + FileSys::ContentRecordType type) const; Result CreateSaveData(FileSys::VirtualDir* out_save_data, FileSys::SaveDataSpaceId space, const FileSys::SaveDataAttribute& save_struct) const; |
