summaryrefslogtreecommitdiffstats
path: root/src/core/hle/ipc.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-10-25 07:10:26 +0200
committerGitHub <noreply@github.com>2018-10-25 07:10:26 +0200
commitc94db0e0719ad66c6d49bab29b8ed497c55a55f3 (patch)
tree89fc126616fd143866e23dab45a3d064a6c48f87 /src/core/hle/ipc.h
parentMerge pull request #1524 from FernandoS27/layers-fix (diff)
parentkernel/errors: Remove now-unused, unnecessary, error codes (diff)
downloadyuzu-c94db0e0719ad66c6d49bab29b8ed497c55a55f3.tar
yuzu-c94db0e0719ad66c6d49bab29b8ed497c55a55f3.tar.gz
yuzu-c94db0e0719ad66c6d49bab29b8ed497c55a55f3.tar.bz2
yuzu-c94db0e0719ad66c6d49bab29b8ed497c55a55f3.tar.lz
yuzu-c94db0e0719ad66c6d49bab29b8ed497c55a55f3.tar.xz
yuzu-c94db0e0719ad66c6d49bab29b8ed497c55a55f3.tar.zst
yuzu-c94db0e0719ad66c6d49bab29b8ed497c55a55f3.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,