summaryrefslogtreecommitdiff
path: root/src/core/loader/loader.h
diff options
context:
space:
mode:
authorGravatar Zach Hilman2018-08-16 17:02:50 -0400
committerGravatar Zach Hilman2018-08-23 11:52:44 -0400
commitb247e0cab0e01476d8bf56e989d34483782b7cae (patch)
tree409c86c7601040adc299b2a19ca9232793597447 /src/core/loader/loader.h
parentnax: Add AppLoader_NAX and update loader to support it (diff)
downloadyuzu-b247e0cab0e01476d8bf56e989d34483782b7cae.tar.gz
yuzu-b247e0cab0e01476d8bf56e989d34483782b7cae.tar.xz
yuzu-b247e0cab0e01476d8bf56e989d34483782b7cae.zip
loader: Add new NAX-specific errors and messages
Diffstat (limited to 'src/core/loader/loader.h')
-rw-r--r--src/core/loader/loader.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h
index d132fb4e8..885fee84c 100644
--- a/src/core/loader/loader.h
+++ b/src/core/loader/loader.h
@@ -94,6 +94,19 @@ enum class ResultStatus : u16 {
94 ErrorLoadingNRO, 94 ErrorLoadingNRO,
95 ErrorNoIcon, 95 ErrorNoIcon,
96 ErrorNoControl, 96 ErrorNoControl,
97 ErrorBadNAXHeader,
98 ErrorIncorrectNAXFileSize,
99 ErrorNAXKeyHMACFailed,
100 ErrorNAXValidationHMACFailed,
101 ErrorNAXKeyDerivationFailed,
102 ErrorNAXInconvertibleToNCA,
103 ErrorBadNAXFilePath,
104 ErrorMissingSDSeed,
105 ErrorMissingSDKEKSource,
106 ErrorMissingAESKEKGenerationSource,
107 ErrorMissingAESKeyGenerationSource,
108 ErrorMissingSDSaveKeySource,
109 ErrorMissingSDNCAKeySource,
97}; 110};
98 111
99std::ostream& operator<<(std::ostream& os, ResultStatus status); 112std::ostream& operator<<(std::ostream& os, ResultStatus status);