diff options
| author | 2019-01-10 17:04:38 -0500 | |
|---|---|---|
| committer | 2019-01-10 17:04:38 -0500 | |
| commit | 83e8ad23310937bb72f4412c15f45231a19202f7 (patch) | |
| tree | 80301af69b14a701f16e21d41ced436850085031 /src/core/loader/loader.h | |
| parent | Merge pull request #2010 from ReinUsesLisp/gmem (diff) | |
| parent | build: Copy web engine resources to correct location (diff) | |
| download | yuzu-83e8ad23310937bb72f4412c15f45231a19202f7.tar.gz yuzu-83e8ad23310937bb72f4412c15f45231a19202f7.tar.xz yuzu-83e8ad23310937bb72f4412c15f45231a19202f7.zip | |
Merge pull request #1939 from DarkLordZach/web-applet
applets: Implement HLE web browser applet (LibAppletOff)
Diffstat (limited to 'src/core/loader/loader.h')
| -rw-r--r-- | src/core/loader/loader.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 30eacd803..01f984098 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h | |||
| @@ -259,6 +259,15 @@ public: | |||
| 259 | return ResultStatus::ErrorNotImplemented; | 259 | return ResultStatus::ErrorNotImplemented; |
| 260 | } | 260 | } |
| 261 | 261 | ||
| 262 | /** | ||
| 263 | * Get the RomFS of the manual of the application | ||
| 264 | * @param file The raw manual RomFS of the game | ||
| 265 | * @return ResultStatus result of function | ||
| 266 | */ | ||
| 267 | virtual ResultStatus ReadManualRomFS(FileSys::VirtualFile& file) { | ||
| 268 | return ResultStatus::ErrorNotImplemented; | ||
| 269 | } | ||
| 270 | |||
| 262 | protected: | 271 | protected: |
| 263 | FileSys::VirtualFile file; | 272 | FileSys::VirtualFile file; |
| 264 | bool is_loaded = false; | 273 | bool is_loaded = false; |