diff options
author | Lioncash <mathew1800@gmail.com> | 2018-12-19 23:50:20 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-12-21 07:05:34 -0500 |
commit | 002ae08bbd3e5e851d8a682203462efbcf59e3dd (patch) | |
tree | 231239717b1035634a2d6ec5d09622fd7a5c6f4b /src/core/loader/loader.h | |
parent | d09fb82113e0a912a66872baa0dd6f1f5c1ef315 (diff) |
kernel/process: Hook up the process capability parser to the process itself
While we're at it, we can also toss out the leftover capability parsing
from Citra.
Diffstat (limited to 'src/core/loader/loader.h')
-rw-r--r-- | src/core/loader/loader.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 0838e303b..a39cb812d 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h @@ -67,6 +67,7 @@ enum class ResultStatus : u16 { ErrorBadACIHeader, ErrorBadFileAccessControl, ErrorBadFileAccessHeader, + ErrorBadKernelCapabilityDescriptors, ErrorBadPFSHeader, ErrorIncorrectPFSFileSize, ErrorBadNCAHeader, @@ -89,6 +90,7 @@ enum class ResultStatus : u16 { ErrorNullFile, ErrorMissingNPDM, Error32BitISA, + ErrorUnableToParseKernelMetadata, ErrorNoRomFS, ErrorIncorrectELFFileSize, ErrorLoadingNRO, |