diff options
author | Subv <subv2112@gmail.com> | 2016-04-17 21:58:51 -0500 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2016-05-12 20:01:26 -0500 |
commit | 0fb6d2a24729401e17cd69264cdb630516d9c151 (patch) | |
tree | d51689fbf847d396496d9e8ff372bc7dfcc65c0e /src/core/hle/result.h | |
parent | 9005cda66469070d9f1cd844720233e738fef74d (diff) |
Kernel: Implemented shared memory permissions.
Diffstat (limited to 'src/core/hle/result.h')
-rw-r--r-- | src/core/hle/result.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/result.h b/src/core/hle/result.h index 3fc1ab4ee..bfb3327ce 100644 --- a/src/core/hle/result.h +++ b/src/core/hle/result.h @@ -17,6 +17,7 @@ /// Detailed description of the error. This listing is likely incomplete. enum class ErrorDescription : u32 { Success = 0, + WrongPermission = 46, OS_InvalidBufferDescriptor = 48, WrongAddress = 53, FS_NotFound = 120, |