diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-03-08 09:16:27 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-08 09:16:27 -0500 |
| commit | f3f57f90fed6d1c3b478c9fceb91a54579b4947d (patch) | |
| tree | 3280b90f3b54b6f8f3fca804cab04699897faa3f /src/core/hle/service/acc/errors.h | |
| parent | b5d61f214d4d591a3d16901fe733ec54df9b1a76 (diff) | |
| parent | 1d0fe75e7cca27d79006654dcc56c44cb4096d3a (diff) | |
Merge pull request #9912 from liamwhite/err
hle: rename legacy errors to Results
Diffstat (limited to 'src/core/hle/service/acc/errors.h')
| -rw-r--r-- | src/core/hle/service/acc/errors.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/core/hle/service/acc/errors.h b/src/core/hle/service/acc/errors.h index e9c16b951..433ebfe9d 100644 --- a/src/core/hle/service/acc/errors.h +++ b/src/core/hle/service/acc/errors.h @@ -7,7 +7,13 @@ namespace Service::Account { -constexpr Result ERR_ACCOUNTINFO_BAD_APPLICATION{ErrorModule::Account, 22}; -constexpr Result ERR_ACCOUNTINFO_ALREADY_INITIALIZED{ErrorModule::Account, 41}; +constexpr Result ResultCancelledByUser{ErrorModule::Account, 1}; +constexpr Result ResultNoNotifications{ErrorModule::Account, 15}; +constexpr Result ResultInvalidUserId{ErrorModule::Account, 20}; +constexpr Result ResultInvalidApplication{ErrorModule::Account, 22}; +constexpr Result ResultNullptr{ErrorModule::Account, 30}; +constexpr Result ResultInvalidArrayLength{ErrorModule::Account, 32}; +constexpr Result ResultApplicationInfoAlreadyInitialized{ErrorModule::Account, 41}; +constexpr Result ResultAccountUpdateFailed{ErrorModule::Account, 100}; } // namespace Service::Account |
