diff options
Diffstat (limited to 'src/core/loader/ncch.h')
| -rw-r--r-- | src/core/loader/ncch.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/loader/ncch.h b/src/core/loader/ncch.h index 9b56465cb..09230ae33 100644 --- a/src/core/loader/ncch.h +++ b/src/core/loader/ncch.h | |||
| @@ -33,7 +33,7 @@ public: | |||
| 33 | return IdentifyType(file); | 33 | return IdentifyType(file); |
| 34 | } | 34 | } |
| 35 | 35 | ||
| 36 | ResultStatus Load() override; | 36 | ResultStatus Load(Kernel::SharedPtr<Kernel::Process>& process) override; |
| 37 | 37 | ||
| 38 | /** | 38 | /** |
| 39 | * Loads the Exheader and returns the system mode for this application. | 39 | * Loads the Exheader and returns the system mode for this application. |
| @@ -62,9 +62,10 @@ public: | |||
| 62 | private: | 62 | private: |
| 63 | /** | 63 | /** |
| 64 | * Loads .code section into memory for booting | 64 | * Loads .code section into memory for booting |
| 65 | * @param process The newly created process | ||
| 65 | * @return ResultStatus result of function | 66 | * @return ResultStatus result of function |
| 66 | */ | 67 | */ |
| 67 | ResultStatus LoadExec(); | 68 | ResultStatus LoadExec(Kernel::SharedPtr<Kernel::Process>& process); |
| 68 | 69 | ||
| 69 | /// Reads the region lockout info in the SMDH and send it to CFG service | 70 | /// Reads the region lockout info in the SMDH and send it to CFG service |
| 70 | void ParseRegionLockoutInfo(); | 71 | void ParseRegionLockoutInfo(); |