diff options
| author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-02-13 09:18:23 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-13 09:18:23 -0800 |
| commit | d60767d393b0fd163d2676f649e3c209537ef884 (patch) | |
| tree | fc8db322e44cb699e17081e7ed6d4f484eb4f75e /src/core/file_sys/errors.h | |
| parent | e10b11a5d06de6efd1ccb39a0ed6bb602761df6d (diff) | |
| parent | 20544977dab5b00a86c73572b94e7e75a7499f7a (diff) | |
Merge pull request #2561 from wwylele/fs-rom
file_sys: change RomFS archive to Self NCCH archive
Diffstat (limited to 'src/core/file_sys/errors.h')
| -rw-r--r-- | src/core/file_sys/errors.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/core/file_sys/errors.h b/src/core/file_sys/errors.h index 4d5f62b08..9fc8d753b 100644 --- a/src/core/file_sys/errors.h +++ b/src/core/file_sys/errors.h @@ -39,5 +39,15 @@ const ResultCode ERROR_DIRECTORY_NOT_EMPTY(ErrorDescription::FS_DirectoryNotEmpt const ResultCode ERROR_GAMECARD_NOT_INSERTED(ErrorDescription::FS_GameCardNotInserted, ErrorModule::FS, ErrorSummary::NotFound, ErrorLevel::Status); +const ResultCode ERROR_INCORRECT_EXEFS_READ_SIZE(ErrorDescription::FS_IncorrectExeFSReadSize, + ErrorModule::FS, ErrorSummary::NotSupported, + ErrorLevel::Usage); +const ResultCode ERROR_ROMFS_NOT_FOUND(ErrorDescription::FS_RomFSNotFound, ErrorModule::FS, + ErrorSummary::NotFound, ErrorLevel::Status); +const ResultCode ERROR_COMMAND_NOT_ALLOWED(ErrorDescription::FS_CommandNotAllowed, ErrorModule::FS, + ErrorSummary::WrongArgument, ErrorLevel::Permanent); +const ResultCode ERROR_EXEFS_SECTION_NOT_FOUND(ErrorDescription::FS_ExeFSSectionNotFound, + ErrorModule::FS, ErrorSummary::NotFound, + ErrorLevel::Status); } // namespace FileSys |
