diff options
author | bunnei <bunneidev@gmail.com> | 2017-12-31 21:59:00 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2017-12-31 21:59:00 +0100 |
commit | c7983e970c7b9603d8a5c5db2a6b0b4d1007a4f1 (patch) | |
tree | d4426c14fb64f25e685098aeae8208fd2bb72764 /src/core/hle/kernel/errors.h | |
parent | svc: Implement svcSetThreadPriority. (diff) | |
download | yuzu-c7983e970c7b9603d8a5c5db2a6b0b4d1007a4f1.tar yuzu-c7983e970c7b9603d8a5c5db2a6b0b4d1007a4f1.tar.gz yuzu-c7983e970c7b9603d8a5c5db2a6b0b4d1007a4f1.tar.bz2 yuzu-c7983e970c7b9603d8a5c5db2a6b0b4d1007a4f1.tar.lz yuzu-c7983e970c7b9603d8a5c5db2a6b0b4d1007a4f1.tar.xz yuzu-c7983e970c7b9603d8a5c5db2a6b0b4d1007a4f1.tar.zst yuzu-c7983e970c7b9603d8a5c5db2a6b0b4d1007a4f1.zip |
Diffstat (limited to 'src/core/hle/kernel/errors.h')
-rw-r--r-- | src/core/hle/kernel/errors.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/kernel/errors.h b/src/core/hle/kernel/errors.h index f8890f0e3..df182efda 100644 --- a/src/core/hle/kernel/errors.h +++ b/src/core/hle/kernel/errors.h @@ -37,6 +37,9 @@ constexpr ResultCode ERR_OUT_OF_MEMORY(-1); constexpr ResultCode ERR_INVALID_ADDRESS(-1); constexpr ResultCode ERR_INVALID_ADDRESS_STATE(-1); constexpr ResultCode ERR_INVALID_HANDLE(-1); +constexpr ResultCode ERR_INVALID_POINTER(-1); +constexpr ResultCode ERR_INVALID_OBJECT_ADDR(-1); +constexpr ResultCode ERR_NOT_AUTHORIZED(-1); /// Alternate code returned instead of ERR_INVALID_HANDLE in some code paths. constexpr ResultCode ERR_INVALID_HANDLE_OS(-1); constexpr ResultCode ERR_NOT_FOUND(-1); |