summaryrefslogtreecommitdiffstats
path: root/src/core/hle/ipc.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-10-24 20:55:55 +0200
committerLioncash <mathew1800@gmail.com>2018-10-24 20:58:37 +0200
commit1fb4bebb63e2824c71259bc72b809d6c2bf48ca9 (patch)
tree4800663d5a6ed8fe989834c95bcd04e15d2e0708 /src/core/hle/ipc.h
parentkernel/shared_memory: Return ERR_INVALID_MEMORY_PERMISSIONS instead of ERR_INVALID_COMBINATION (diff)
downloadyuzu-1fb4bebb63e2824c71259bc72b809d6c2bf48ca9.tar
yuzu-1fb4bebb63e2824c71259bc72b809d6c2bf48ca9.tar.gz
yuzu-1fb4bebb63e2824c71259bc72b809d6c2bf48ca9.tar.bz2
yuzu-1fb4bebb63e2824c71259bc72b809d6c2bf48ca9.tar.lz
yuzu-1fb4bebb63e2824c71259bc72b809d6c2bf48ca9.tar.xz
yuzu-1fb4bebb63e2824c71259bc72b809d6c2bf48ca9.tar.zst
yuzu-1fb4bebb63e2824c71259bc72b809d6c2bf48ca9.zip
Diffstat (limited to 'src/core/hle/ipc.h')
-rw-r--r--src/core/hle/ipc.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/hle/ipc.h b/src/core/hle/ipc.h
index 419f45896..ed84197b3 100644
--- a/src/core/hle/ipc.h
+++ b/src/core/hle/ipc.h
@@ -14,11 +14,6 @@ namespace IPC {
/// Size of the command buffer area, in 32-bit words.
constexpr std::size_t COMMAND_BUFFER_LENGTH = 0x100 / sizeof(u32);
-// These errors are commonly returned by invalid IPC translations, so alias them here for
-// convenience.
-// TODO(yuriks): These will probably go away once translation is implemented inside the kernel.
-constexpr auto ERR_INVALID_HANDLE = Kernel::ERR_INVALID_HANDLE_OS;
-
enum class ControlCommand : u32 {
ConvertSessionToDomain = 0,
ConvertDomainToSession = 1,