From 517c76c05c4726ca42c7f540282ee15a03787bac Mon Sep 17 00:00:00 2001 From: yellows8 Date: Wed, 28 Feb 2018 19:19:45 -0500 Subject: [PATCH] Added Module_Kernel and KernelError_Timeout to result.h. --- nx/include/switch/result.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nx/include/switch/result.h b/nx/include/switch/result.h index a2085e18..1f8f43fd 100644 --- a/nx/include/switch/result.h +++ b/nx/include/switch/result.h @@ -21,10 +21,16 @@ /// Module values enum { + Module_Kernel=1, Module_Libnx=345, Module_LibnxNvidia=348, }; +/// Kernel error codes +enum { + KernelError_Timeout=117, +}; + /// libnx error codes enum { LibnxError_BadReloc=1,