From a5bdf10d5b744f3cbb4384ea9f1a965052f9a6e3 Mon Sep 17 00:00:00 2001 From: DanielSvoboda Date: Wed, 14 Aug 2024 18:32:17 -0300 Subject: [PATCH] ERROR Removed error_codes present in separate files, unifying them all in one place; Removed some duplicates; Added the remaining codes present in psdevwiki. --- CMakeLists.txt | 3 - src/core/libraries/dialogs/error_codes.h | 12 - src/core/libraries/dialogs/error_dialog.cpp | 1 - src/core/libraries/disc_map/disc_map.cpp | 1 - src/core/libraries/error_codes.h | 9016 ++++++++++++++++- src/core/libraries/kernel/file_system.cpp | 34 +- src/core/libraries/kernel/libkernel.cpp | 12 +- .../libraries/kernel/memory_management.cpp | 26 +- .../libraries/kernel/thread_management.cpp | 318 +- .../libraries/kernel/threads/semaphore.cpp | 10 +- src/core/libraries/kernel/time_management.cpp | 20 +- src/core/libraries/network/net.cpp | 424 +- src/core/libraries/pad/pad.cpp | 6 +- src/core/libraries/playgo/playgo_types.h | 20 +- src/core/libraries/random/random.cpp | 2 +- src/core/libraries/save_data/error_codes.h | 28 - src/core/libraries/save_data/savedata.cpp | 1 - src/core/libraries/videoout/video_out.cpp | 4 +- src/core/memory.cpp | 2 +- 19 files changed, 9132 insertions(+), 808 deletions(-) delete mode 100644 src/core/libraries/dialogs/error_codes.h delete mode 100644 src/core/libraries/save_data/error_codes.h diff --git a/CMakeLists.txt b/CMakeLists.txt index 9153197cb..621437786 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -166,7 +166,6 @@ set(SYSTEM_LIBS src/core/libraries/system/commondialog.cpp src/core/libraries/system/msgdialog.h src/core/libraries/system/posix.cpp src/core/libraries/system/posix.h - src/core/libraries/save_data/error_codes.h src/core/libraries/save_data/savedata.cpp src/core/libraries/save_data/savedata.h src/core/libraries/system/savedatadialog.cpp @@ -183,7 +182,6 @@ set(SYSTEM_LIBS src/core/libraries/system/commondialog.cpp src/core/libraries/rtc/rtc.h src/core/libraries/disc_map/disc_map.cpp src/core/libraries/disc_map/disc_map.h - src/core/libraries/disc_map/disc_map_codes.h src/core/libraries/avplayer/avplayer.cpp src/core/libraries/avplayer/avplayer.h ) @@ -217,7 +215,6 @@ set(DIALOGS_LIB src/core/libraries/dialogs/error_dialog.cpp src/core/libraries/dialogs/error_dialog.h src/core/libraries/dialogs/ime_dialog.cpp src/core/libraries/dialogs/ime_dialog.h - src/core/libraries/dialogs/error_codes.h ) set(PAD_LIB src/core/libraries/pad/pad.cpp diff --git a/src/core/libraries/dialogs/error_codes.h b/src/core/libraries/dialogs/error_codes.h deleted file mode 100644 index 587a2a973..000000000 --- a/src/core/libraries/dialogs/error_codes.h +++ /dev/null @@ -1,12 +0,0 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -constexpr int ORBIS_ERROR_DIALOG_ERROR_NOT_INITIALIZED = 0x80ED0001; // not initialized -constexpr int ORBIS_ERROR_DIALOG_ERROR_ALREADY_INITIALIZED = 0x80ED0002; // already initialized -constexpr int ORBIS_ERROR_DIALOG_ERROR_PARAM_INVALID = 0x80ED0003; // Parameter is invalid -constexpr int ORBIS_ERROR_DIALOG_ERROR_UNEXPECTED_FATAL = 0x80ED0004; // Unexpected fatal error -constexpr int ORBIS_ERROR_DIALOG_ERROR_INVALID_STATE = 0x80ED0005; // not in a callable state -constexpr int ORBIS_ERROR_DIALOG_ERROR_SERVICE_BUSY = 0x80ED0006; // Process is busy -constexpr int ORBIS_ERROR_DIALOG_ERROR_INVALID_USER_ID = 0x80ED0007; // Invalid user ID diff --git a/src/core/libraries/dialogs/error_dialog.cpp b/src/core/libraries/dialogs/error_dialog.cpp index 02f82c096..333c55ee9 100644 --- a/src/core/libraries/dialogs/error_dialog.cpp +++ b/src/core/libraries/dialogs/error_dialog.cpp @@ -5,7 +5,6 @@ #include "common/logging/log.h" #include "core/libraries/error_codes.h" #include "core/libraries/libs.h" -#include "error_codes.h" #include "error_dialog.h" namespace Libraries::ErrorDialog { diff --git a/src/core/libraries/disc_map/disc_map.cpp b/src/core/libraries/disc_map/disc_map.cpp index 79f4acb34..2bfad215b 100644 --- a/src/core/libraries/disc_map/disc_map.cpp +++ b/src/core/libraries/disc_map/disc_map.cpp @@ -6,7 +6,6 @@ #include "core/libraries/error_codes.h" #include "core/libraries/libs.h" #include "disc_map.h" -#include "disc_map_codes.h" namespace Libraries::DiscMap { diff --git a/src/core/libraries/error_codes.h b/src/core/libraries/error_codes.h index 5eabaaf67..d467e564b 100644 --- a/src/core/libraries/error_codes.h +++ b/src/core/libraries/error_codes.h @@ -125,337 +125,8725 @@ constexpr int POSIX_EOTHER = 1062; constexpr int POSIX_EOWNERDEAD = 1064; constexpr int POSIX_ETIME = 1074; -constexpr int SCE_OK = 0; - -// kernel error codes -constexpr int SCE_KERNEL_ERROR_UNKNOWN = 0x80020000; -constexpr int SCE_KERNEL_ERROR_EPERM = 0x80020001; -constexpr int SCE_KERNEL_ERROR_ENOENT = 0x80020002; -constexpr int SCE_KERNEL_ERROR_ESRCH = 0x80020003; -constexpr int SCE_KERNEL_ERROR_EINTR = 0x80020004; -constexpr int SCE_KERNEL_ERROR_EIO = 0x80020005; -constexpr int SCE_KERNEL_ERROR_ENXIO = 0x80020006; -constexpr int SCE_KERNEL_ERROR_E2BIG = 0x80020007; -constexpr int SCE_KERNEL_ERROR_ENOEXEC = 0x80020008; -constexpr int SCE_KERNEL_ERROR_EBADF = 0x80020009; -constexpr int SCE_KERNEL_ERROR_ECHILD = 0x8002000A; -constexpr int SCE_KERNEL_ERROR_EDEADLK = 0x8002000B; -constexpr int SCE_KERNEL_ERROR_ENOMEM = 0x8002000C; -constexpr int SCE_KERNEL_ERROR_EACCES = 0x8002000D; -constexpr int SCE_KERNEL_ERROR_EFAULT = 0x8002000E; -constexpr int SCE_KERNEL_ERROR_ENOTBLK = 0x8002000F; -constexpr int SCE_KERNEL_ERROR_EBUSY = 0x80020010; -constexpr int SCE_KERNEL_ERROR_EEXIST = 0x80020011; -constexpr int SCE_KERNEL_ERROR_EXDEV = 0x80020012; -constexpr int SCE_KERNEL_ERROR_ENODEV = 0x80020013; -constexpr int SCE_KERNEL_ERROR_ENOTDIR = 0x80020014; -constexpr int SCE_KERNEL_ERROR_EISDIR = 0x80020015; -constexpr int SCE_KERNEL_ERROR_EINVAL = 0x80020016; -constexpr int SCE_KERNEL_ERROR_ENFILE = 0x80020017; -constexpr int SCE_KERNEL_ERROR_EMFILE = 0x80020018; -constexpr int SCE_KERNEL_ERROR_ENOTTY = 0x80020019; -constexpr int SCE_KERNEL_ERROR_ETXTBSY = 0x8002001A; -constexpr int SCE_KERNEL_ERROR_EFBIG = 0x8002001B; -constexpr int SCE_KERNEL_ERROR_ENOSPC = 0x8002001C; -constexpr int SCE_KERNEL_ERROR_ESPIPE = 0x8002001D; -constexpr int SCE_KERNEL_ERROR_EROFS = 0x8002001E; -constexpr int SCE_KERNEL_ERROR_EMLINK = 0x8002001F; -constexpr int SCE_KERNEL_ERROR_EPIPE = 0x80020020; -constexpr int SCE_KERNEL_ERROR_EDOM = 0x80020021; -constexpr int SCE_KERNEL_ERROR_ERANGE = 0x80020022; -constexpr int SCE_KERNEL_ERROR_EAGAIN = 0x80020023; -constexpr int SCE_KERNEL_ERROR_EWOULDBLOCK = 0x80020023; -constexpr int SCE_KERNEL_ERROR_EINPROGRESS = 0x80020024; -constexpr int SCE_KERNEL_ERROR_EALREADY = 0x80020025; -constexpr int SCE_KERNEL_ERROR_ENOTSOCK = 0x80020026; -constexpr int SCE_KERNEL_ERROR_EDESTADDRREQ = 0x80020027; -constexpr int SCE_KERNEL_ERROR_EMSGSIZE = 0x80020028; -constexpr int SCE_KERNEL_ERROR_EPROTOTYPE = 0x80020029; -constexpr int SCE_KERNEL_ERROR_ENOPROTOOPT = 0x8002002A; -constexpr int SCE_KERNEL_ERROR_EPROTONOSUPPORT = 0x8002002B; -constexpr int SCE_KERNEL_ERROR_ESOCKTNOSUPPORT = 0x8002002C; -constexpr int SCE_KERNEL_ERROR_EOPNOTSUPP = 0x8002002D; -constexpr int SCE_KERNEL_ERROR_ENOTSUP = 0x8002002D; -constexpr int SCE_KERNEL_ERROR_EPFNOSUPPORT = 0x8002002E; -constexpr int SCE_KERNEL_ERROR_EAFNOSUPPORT = 0x8002002F; -constexpr int SCE_KERNEL_ERROR_EADDRINUSE = 0x80020030; -constexpr int SCE_KERNEL_ERROR_EADDRNOTAVAIL = 0x80020031; -constexpr int SCE_KERNEL_ERROR_ENETDOWN = 0x80020032; -constexpr int SCE_KERNEL_ERROR_ENETUNREACH = 0x80020033; -constexpr int SCE_KERNEL_ERROR_ENETRESET = 0x80020034; -constexpr int SCE_KERNEL_ERROR_ECONNABORTED = 0x80020035; -constexpr int SCE_KERNEL_ERROR_ECONNRESET = 0x80020036; -constexpr int SCE_KERNEL_ERROR_ENOBUFS = 0x80020037; -constexpr int SCE_KERNEL_ERROR_EISCONN = 0x80020038; -constexpr int SCE_KERNEL_ERROR_ENOTCONN = 0x80020039; -constexpr int SCE_KERNEL_ERROR_ESHUTDOWN = 0x8002003A; -constexpr int SCE_KERNEL_ERROR_ETOOMANYREFS = 0x8002003B; -constexpr int SCE_KERNEL_ERROR_ETIMEDOUT = 0x8002003C; -constexpr int SCE_KERNEL_ERROR_ECONNREFUSED = 0x8002003D; -constexpr int SCE_KERNEL_ERROR_ELOOP = 0x8002003E; -constexpr int SCE_KERNEL_ERROR_ENAMETOOLONG = 0x8002003F; -constexpr int SCE_KERNEL_ERROR_EHOSTDOWN = 0x80020040; -constexpr int SCE_KERNEL_ERROR_EHOSTUNREACH = 0x80020041; -constexpr int SCE_KERNEL_ERROR_ENOTEMPTY = 0x80020042; -constexpr int SCE_KERNEL_ERROR_EPROCLIM = 0x80020043; -constexpr int SCE_KERNEL_ERROR_EUSERS = 0x80020044; -constexpr int SCE_KERNEL_ERROR_EDQUOT = 0x80020045; -constexpr int SCE_KERNEL_ERROR_ESTALE = 0x80020046; -constexpr int SCE_KERNEL_ERROR_EREMOTE = 0x80020047; -constexpr int SCE_KERNEL_ERROR_EBADRPC = 0x80020048; -constexpr int SCE_KERNEL_ERROR_ERPCMISMATCH = 0x80020049; -constexpr int SCE_KERNEL_ERROR_EPROGUNAVAIL = 0x8002004A; -constexpr int SCE_KERNEL_ERROR_EPROGMISMATCH = 0x8002004B; -constexpr int SCE_KERNEL_ERROR_EPROCUNAVAIL = 0x8002004C; -constexpr int SCE_KERNEL_ERROR_ENOLCK = 0x8002004D; -constexpr int SCE_KERNEL_ERROR_ENOSYS = 0x8002004E; -constexpr int SCE_KERNEL_ERROR_EFTYPE = 0x8002004F; -constexpr int SCE_KERNEL_ERROR_EAUTH = 0x80020050; -constexpr int SCE_KERNEL_ERROR_ENEEDAUTH = 0x80020051; -constexpr int SCE_KERNEL_ERROR_EIDRM = 0x80020052; -constexpr int SCE_KERNEL_ERROR_ENOMSG = 0x80020053; -constexpr int SCE_KERNEL_ERROR_EOVERFLOW = 0x80020054; -constexpr int SCE_KERNEL_ERROR_ECANCELED = 0x80020055; -constexpr int SCE_KERNEL_ERROR_EILSEQ = 0x80020056; -constexpr int SCE_KERNEL_ERROR_ENOATTR = 0x80020057; -constexpr int SCE_KERNEL_ERROR_EDOOFUS = 0x80020058; -constexpr int SCE_KERNEL_ERROR_EBADMSG = 0x80020059; -constexpr int SCE_KERNEL_ERROR_EMULTIHOP = 0x8002005A; -constexpr int SCE_KERNEL_ERROR_ENOLINK = 0x8002005B; -constexpr int SCE_KERNEL_ERROR_EPROTO = 0x8002005C; -constexpr int SCE_KERNEL_ERROR_ENOTCAPABLE = 0x8002005D; -constexpr int SCE_KERNEL_ERROR_ECAPMODE = 0x8002005E; -constexpr int SCE_KERNEL_ERROR_ENOBLK = 0x8002005F; -constexpr int SCE_KERNEL_ERROR_EICV = 0x80020060; -constexpr int SCE_KERNEL_ERROR_ENOPLAYGOENT = 0x80020061; -constexpr int SCE_KERNEL_ERROR_EREVOKE = 0x80020062; -constexpr int SCE_KERNEL_ERROR_ESDKVERSION = 0x80020063; -constexpr int SCE_KERNEL_ERROR_ESTART = 0x80020064; -constexpr int SCE_KERNEL_ERROR_ESTOP = 0x80020065; +// Generic +constexpr int ORBIS_OK = 0x00000000; // 0 +constexpr int ORBIS_FAIL = 0xFFFFFFFF; // 4294967295 // libSceRandom error codes -constexpr int SCE_RANDOM_ERROR_INVALID = 0x817C0016; - -// videoOut -constexpr int SCE_VIDEO_OUT_ERROR_INVALID_VALUE = 0x80290001; // invalid argument -constexpr int SCE_VIDEO_OUT_ERROR_INVALID_ADDRESS = 0x80290002; // invalid addresses -constexpr int SCE_VIDEO_OUT_ERROR_INVALID_TILING_MODE = 0x80290007; // invalid tiling mode -constexpr int SCE_VIDEO_OUT_ERROR_INVALID_ASPECT_RATIO = 0x80290008; // invalid aspect ration -constexpr int SCE_VIDEO_OUT_ERROR_RESOURCE_BUSY = 0x80290009; // already opened -constexpr int SCE_VIDEO_OUT_ERROR_INVALID_INDEX = 0x8029000A; // invalid buffer index -constexpr int SCE_VIDEO_OUT_ERROR_INVALID_HANDLE = 0x8029000B; // invalid handle -constexpr int SCE_VIDEO_OUT_ERROR_INVALID_EVENT_QUEUE = 0x8029000C; // Invalid event queue -constexpr int SCE_VIDEO_OUT_ERROR_SLOT_OCCUPIED = 0x80290010; // slot already used -constexpr int SCE_VIDEO_OUT_ERROR_FLIP_QUEUE_FULL = 0x80290012; // flip queue is full -constexpr int SCE_VIDEO_OUT_ERROR_INVALID_OPTION = 0x8029001A; // Invalid buffer attribute option +constexpr int ORBIS_RANDOM_ERROR_INVALID = 0x817C0016; // 2172387350 // GnmDriver -constexpr int ORBIS_GNM_ERROR_COMPUTEQUEUE_INVALID_PIPE_ID = 0x80D17000; -constexpr int ORBIS_GNM_ERROR_COMPUTEQUEUE_INVALID_QUEUE_ID = 0x80D17001; -constexpr int ORBIS_GNM_ERROR_COMPUTEQUEUE_INVALID_RING_BASE_ADDR = 0x80D17003; -constexpr int ORBIS_GNM_ERROR_COMPUTEQUEUE_INVALID_RING_SIZE = 0x80D17002; -constexpr int ORBIS_GNM_ERROR_COMPUTEQUEUE_INVALID_READ_PTR_ADDR = 0x80D17004; -constexpr int ORBIS_GNM_ERROR_FAILURE = 0x8EEE00FF; +constexpr int ORBIS_GNM_ERROR_CAPTURE_FAILED_INTERNAL = 0x80d1500f; // 2161201167 +constexpr int ORBIS_GNM_ERROR_CAPTURE_FILE_IO = 0x80d15000; // 2161201152 +constexpr int ORBIS_GNM_ERROR_CAPTURE_NOTHING_TO_CAPTURE = 0x80d15002; // 2161201154 +constexpr int ORBIS_GNM_ERROR_CAPTURE_RAZOR_NOT_LOADED = 0x80d15001; // 2161201153 +constexpr int ORBIS_GNM_ERROR_COMPUTEQUEUE_INTERNAL = 0x80d170ff; // 2161209599 +constexpr int ORBIS_GNM_ERROR_COMPUTEQUEUE_INVALID_PIPE_ID = 0x80d17000; // 2161209344 +constexpr int ORBIS_GNM_ERROR_COMPUTEQUEUE_INVALID_QUEUE_ID = 0x80d17001; // 2161209345 +constexpr int ORBIS_GNM_ERROR_COMPUTEQUEUE_INVALID_READ_PTR_ADDR = 0x80d17004; // 2161209348 +constexpr int ORBIS_GNM_ERROR_COMPUTEQUEUE_INVALID_RING_BASE_ADDR = 0x80d17003; // 2161209347 +constexpr int ORBIS_GNM_ERROR_COMPUTEQUEUE_INVALID_RING_SIZE = 0x80d17002; // 2161209346 +constexpr int ORBIS_GNM_ERROR_SUBMISSION_AND_FLIP_FAILED_INVALID_COMMAND_BUFFER = + 0x80d11080; // 2161184896 +constexpr int ORBIS_GNM_ERROR_SUBMISSION_AND_FLIP_FAILED_INVALID_QUEUE_FULL = + 0x80d11081; // 2161184897 +constexpr int ORBIS_GNM_ERROR_SUBMISSION_AND_FLIP_FAILED_REQUEST_FAILED = 0x80d11082; // 2161184898 +constexpr int ORBIS_GNM_ERROR_SUBMISSION_FAILED_INTERNAL_ERROR = 0x80d110ff; // 2161185023 +constexpr int ORBIS_GNM_ERROR_SUBMISSION_FAILED_INVALID_ARGUMENT = 0x80d11000; // 2161184768 +constexpr int ORBIS_GNM_ERROR_SUBMISSION_NOT_ENOUGH_RESOURCES = 0x80d11001; // 2161184769 +constexpr int ORBIS_GNM_ERROR_VALIDATION_BORDER_COLOR_TABLE = 0x80d1300f; // 2161192975 +constexpr int ORBIS_GNM_ERROR_VALIDATION_DISPATCH_DRAW = 0x80d13011; // 2161192977 +constexpr int ORBIS_GNM_ERROR_VALIDATION_FAILED_INTERNAL_ERROR = 0x80d13ffe; // 2161197054 +constexpr int ORBIS_GNM_ERROR_VALIDATION_GS_MODE = 0x80d1300d; // 2161192973 +constexpr int ORBIS_GNM_ERROR_VALIDATION_INDEX_BUFFER = 0x80d13006; // 2161192966 +constexpr int ORBIS_GNM_ERROR_VALIDATION_INDEX_SIZE = 0x80d1300a; // 2161192970 +constexpr int ORBIS_GNM_ERROR_VALIDATION_INLINE_DRAW_SIZE = 0x80d1300b; // 2161192971 +constexpr int ORBIS_GNM_ERROR_VALIDATION_NOT_ENABLED = 0x80d13fff; // 2161197055 +constexpr int ORBIS_GNM_ERROR_VALIDATION_NUM_INPUT_PATCHES = 0x80d1300c; // 2161192972 +constexpr int ORBIS_GNM_ERROR_VALIDATION_PRIMITIVE_TYPE = 0x80d13009; // 2161192969 +constexpr int ORBIS_GNM_ERROR_VALIDATION_RESOURCE = 0x80d13003; // 2161192963 +constexpr int ORBIS_GNM_ERROR_VALIDATION_SCRATCH_RING = 0x80d13008; // 2161192968 +constexpr int ORBIS_GNM_ERROR_VALIDATION_SHADER_ADDRESS = 0x80d1300e; // 2161192974 +constexpr int ORBIS_GNM_ERROR_VALIDATION_SSHARP = 0x80d13010; // 2161192976 +constexpr int ORBIS_GNM_ERROR_VALIDATION_TABLE_MEMORY = 0x80d13004; // 2161192964 +constexpr int ORBIS_GNM_ERROR_VALIDATION_TESS_FACTOR_BUFFER = 0x80d13007; // 2161192967 +constexpr int ORBIS_GNM_ERROR_VALIDATION_TSHARP = 0x80d13002; // 2161192962 +constexpr int ORBIS_GNM_ERROR_VALIDATION_VSHARP = 0x80d13001; // 2161192961 +constexpr int ORBIS_GNM_ERROR_VALIDATION_WARNING_PS_AND_MRT_FORMAT = 0x80d1200f; // 2161188879 +constexpr int ORBIS_GNM_ERROR_VALIDATION_WARNING_RWBUFFER_ROTYPE = 0x80d12001; // 2161188865 +constexpr int ORBIS_GNM_ERROR_VALIDATION_WRITE_EVENT_OP = 0x80d13005; // 2161192965 +constexpr int ORBIS_GNMX_ERROR_DISPATCH_DRAW_INVALID_ARGUMENTS = 0x80d21000; // 2161250304 +constexpr int ORBIS_GNMX_ERROR_DISPATCH_DRAW_OUT_OF_SPACE_FOR_BLOCK_OFFSET = + 0x80d21002; // 2161250306 +constexpr int ORBIS_GNMX_ERROR_DISPATCH_DRAW_OUT_OF_SPACE_FOR_INDEX_DATA = 0x80d21001; // 2161250305 +constexpr int ORBIS_GNMX_ERROR_DISPATCH_DRAW_UNREPRESENTABLE_OFFSET = 0x80d21003; // 2161250307 +constexpr int ORBIS_GNM_ERROR_FAILURE = 0x8EEE00FF; // 2397962495 -// Generic -constexpr int ORBIS_OK = 0x00000000; -constexpr int ORBIS_FAIL = 0xFFFFFFFF; +// kernel error codes +constexpr int ORBIS_KERNEL_ERROR_UNKNOWN = 0x80020000; // 2147614720 +constexpr int ORBIS_KERNEL_ERROR_EPERM = 0x80020001; // 2147614721 +constexpr int ORBIS_KERNEL_ERROR_ENOENT = 0x80020002; // 2147614722 +constexpr int ORBIS_KERNEL_ERROR_ESRCH = 0x80020003; // 2147614723 +constexpr int ORBIS_KERNEL_ERROR_EINTR = 0x80020004; // 2147614724 +constexpr int ORBIS_KERNEL_ERROR_EIO = 0x80020005; // 2147614725 +constexpr int ORBIS_KERNEL_ERROR_ENXIO = 0x80020006; // 2147614726 +constexpr int ORBIS_KERNEL_ERROR_E2BIG = 0x80020007; // 2147614727 +constexpr int ORBIS_KERNEL_ERROR_ENOEXEC = 0x80020008; // 2147614728 +constexpr int ORBIS_KERNEL_ERROR_EBADF = 0x80020009; // 2147614729 +constexpr int ORBIS_KERNEL_ERROR_ECHILD = 0x8002000A; // 2147614730 +constexpr int ORBIS_KERNEL_ERROR_EDEADLK = 0x8002000B; // 2147614731 +constexpr int ORBIS_KERNEL_ERROR_ENOMEM = 0x8002000C; // 2147614732 +constexpr int ORBIS_KERNEL_ERROR_EACCES = 0x8002000D; // 2147614733 +constexpr int ORBIS_KERNEL_ERROR_EFAULT = 0x8002000E; // 2147614734 +constexpr int ORBIS_KERNEL_ERROR_ENOTBLK = 0x8002000F; // 2147614735 +constexpr int ORBIS_KERNEL_ERROR_EBUSY = 0x80020010; // 2147614736 +constexpr int ORBIS_KERNEL_ERROR_EEXIST = 0x80020011; // 2147614737 +constexpr int ORBIS_KERNEL_ERROR_EXDEV = 0x80020012; // 2147614738 +constexpr int ORBIS_KERNEL_ERROR_ENODEV = 0x80020013; // 2147614739 +constexpr int ORBIS_KERNEL_ERROR_ENOTDIR = 0x80020014; // 2147614740 +constexpr int ORBIS_KERNEL_ERROR_EISDIR = 0x80020015; // 2147614741 +constexpr int ORBIS_KERNEL_ERROR_EINVAL = 0x80020016; // 2147614742 +constexpr int ORBIS_KERNEL_ERROR_ENFILE = 0x80020017; // 2147614743 +constexpr int ORBIS_KERNEL_ERROR_EMFILE = 0x80020018; // 2147614744 +constexpr int ORBIS_KERNEL_ERROR_ENOTTY = 0x80020019; // 2147614745 +constexpr int ORBIS_KERNEL_ERROR_ETXTBSY = 0x8002001A; // 2147614746 +constexpr int ORBIS_KERNEL_ERROR_EFBIG = 0x8002001B; // 2147614747 +constexpr int ORBIS_KERNEL_ERROR_ENOSPC = 0x8002001C; // 2147614748 +constexpr int ORBIS_KERNEL_ERROR_ESPIPE = 0x8002001D; // 2147614749 +constexpr int ORBIS_KERNEL_ERROR_EROFS = 0x8002001E; // 2147614750 +constexpr int ORBIS_KERNEL_ERROR_EMLINK = 0x8002001F; // 2147614751 +constexpr int ORBIS_KERNEL_ERROR_EPIPE = 0x80020020; // 2147614752 +constexpr int ORBIS_KERNEL_ERROR_EDOM = 0x80020021; // 2147614753 +constexpr int ORBIS_KERNEL_ERROR_ERANGE = 0x80020022; // 2147614754 +constexpr int ORBIS_KERNEL_ERROR_EAGAIN = 0x80020023; // 2147614755 +constexpr int ORBIS_KERNEL_ERROR_EWOULDBLOCK = 0x80020023; // 2147614755 +constexpr int ORBIS_KERNEL_ERROR_EINPROGRESS = 0x80020024; // 2147614756 +constexpr int ORBIS_KERNEL_ERROR_EALREADY = 0x80020025; // 2147614757 +constexpr int ORBIS_KERNEL_ERROR_ENOTSOCK = 0x80020026; // 2147614758 +constexpr int ORBIS_KERNEL_ERROR_EDESTADDRREQ = 0x80020027; // 2147614759 +constexpr int ORBIS_KERNEL_ERROR_EMSGSIZE = 0x80020028; // 2147614760 +constexpr int ORBIS_KERNEL_ERROR_EPROTOTYPE = 0x80020029; // 2147614761 +constexpr int ORBIS_KERNEL_ERROR_ENOPROTOOPT = 0x8002002A; // 2147614762 +constexpr int ORBIS_KERNEL_ERROR_EPROTONOSUPPORT = 0x8002002B; // 2147614763 +constexpr int ORBIS_KERNEL_ERROR_ESOCKTNOSUPPORT = 0x8002002C; // 2147614764 +constexpr int ORBIS_KERNEL_ERROR_ENOTSUP = 0x8002002D; // 2147614765 +constexpr int ORBIS_KERNEL_ERROR_EOPNOTSUPP = 0x8002002D; // 2147614765 +constexpr int ORBIS_KERNEL_ERROR_EPFNOSUPPORT = 0x8002002E; // 2147614766 +constexpr int ORBIS_KERNEL_ERROR_EAFNOSUPPORT = 0x8002002F; // 2147614767 +constexpr int ORBIS_KERNEL_ERROR_EADDRINUSE = 0x80020030; // 2147614768 +constexpr int ORBIS_KERNEL_ERROR_EADDRNOTAVAIL = 0x80020031; // 2147614769 +constexpr int ORBIS_KERNEL_ERROR_ENETDOWN = 0x80020032; // 2147614770 +constexpr int ORBIS_KERNEL_ERROR_ENETUNREACH = 0x80020033; // 2147614771 +constexpr int ORBIS_KERNEL_ERROR_ENETRESET = 0x80020034; // 2147614772 +constexpr int ORBIS_KERNEL_ERROR_ECONNABORTED = 0x80020035; // 2147614773 +constexpr int ORBIS_KERNEL_ERROR_ECONNRESET = 0x80020036; // 2147614774 +constexpr int ORBIS_KERNEL_ERROR_ENOBUFS = 0x80020037; // 2147614775 +constexpr int ORBIS_KERNEL_ERROR_EISCONN = 0x80020038; // 2147614776 +constexpr int ORBIS_KERNEL_ERROR_ENOTCONN = 0x80020039; // 2147614777 +constexpr int ORBIS_KERNEL_ERROR_ESHUTDOWN = 0x8002003A; // 2147614778 +constexpr int ORBIS_KERNEL_ERROR_ETOOMANYREFS = 0x8002003B; // 2147614779 +constexpr int ORBIS_KERNEL_ERROR_ETIMEDOUT = 0x8002003C; // 2147614780 +constexpr int ORBIS_KERNEL_ERROR_ECONNREFUSED = 0x8002003D; // 2147614781 +constexpr int ORBIS_KERNEL_ERROR_ELOOP = 0x8002003E; // 2147614782 +constexpr int ORBIS_KERNEL_ERROR_ENAMETOOLONG = 0x8002003F; // 2147614783 +constexpr int ORBIS_KERNEL_ERROR_EHOSTDOWN = 0x80020040; // 2147614784 +constexpr int ORBIS_KERNEL_ERROR_EHOSTUNREACH = 0x80020041; // 2147614785 +constexpr int ORBIS_KERNEL_ERROR_ENOTEMPTY = 0x80020042; // 2147614786 +constexpr int ORBIS_KERNEL_ERROR_EPROCLIM = 0x80020043; // 2147614787 +constexpr int ORBIS_KERNEL_ERROR_EUSERS = 0x80020044; // 2147614788 +constexpr int ORBIS_KERNEL_ERROR_EDQUOT = 0x80020045; // 2147614789 +constexpr int ORBIS_KERNEL_ERROR_ESTALE = 0x80020046; // 2147614790 +constexpr int ORBIS_KERNEL_ERROR_EREMOTE = 0x80020047; // 2147614791 +constexpr int ORBIS_KERNEL_ERROR_EBADRPC = 0x80020048; // 2147614792 +constexpr int ORBIS_KERNEL_ERROR_ERPCMISMATCH = 0x80020049; // 2147614793 +constexpr int ORBIS_KERNEL_ERROR_EPROGUNAVAIL = 0x8002004A; // 2147614794 +constexpr int ORBIS_KERNEL_ERROR_EPROGMISMATCH = 0x8002004B; // 2147614795 +constexpr int ORBIS_KERNEL_ERROR_EPROCUNAVAIL = 0x8002004C; // 2147614796 +constexpr int ORBIS_KERNEL_ERROR_ENOLCK = 0x8002004D; // 2147614797 +constexpr int ORBIS_KERNEL_ERROR_ENOSYS = 0x8002004E; // 2147614798 +constexpr int ORBIS_KERNEL_ERROR_EFTYPE = 0x8002004F; // 2147614799 +constexpr int ORBIS_KERNEL_ERROR_EAUTH = 0x80020050; // 2147614800 +constexpr int ORBIS_KERNEL_ERROR_ENEEDAUTH = 0x80020051; // 2147614801 +constexpr int ORBIS_KERNEL_ERROR_EIDRM = 0x80020052; // 2147614802 +constexpr int ORBIS_KERNEL_ERROR_ENOMSG = 0x80020053; // 2147614803 +constexpr int ORBIS_KERNEL_ERROR_EOVERFLOW = 0x80020054; // 2147614804 +constexpr int ORBIS_KERNEL_ERROR_ECANCELED = 0x80020055; // 2147614805 +constexpr int ORBIS_KERNEL_ERROR_EILSEQ = 0x80020056; // 2147614806 +constexpr int ORBIS_KERNEL_ERROR_ENOATTR = 0x80020057; // 2147614807 +constexpr int ORBIS_KERNEL_ERROR_EDOOFUS = 0x80020058; // 2147614808 +constexpr int ORBIS_KERNEL_ERROR_EBADMSG = 0x80020059; // 2147614809 +constexpr int ORBIS_KERNEL_ERROR_EMULTIHOP = 0x8002005A; // 2147614810 +constexpr int ORBIS_KERNEL_ERROR_ENOLINK = 0x8002005B; // 2147614811 +constexpr int ORBIS_KERNEL_ERROR_EPROTO = 0x8002005C; // 2147614812 +constexpr int ORBIS_KERNEL_ERROR_ENOTCAPABLE = 0x8002005D; // 2147614813 +constexpr int ORBIS_KERNEL_ERROR_ECAPMODE = 0x8002005E; // 2147614814 +constexpr int ORBIS_KERNEL_ERROR_ENOBLK = 0x8002005F; // 2147614815 +constexpr int ORBIS_KERNEL_ERROR_EICV = 0x80020060; // 2147614816 +constexpr int ORBIS_KERNEL_ERROR_ENOPLAYGOENT = 0x80020061; // 2147614817 +constexpr int ORBIS_KERNEL_ERROR_EREVOKE = 0x80020062; // 2147614818 +constexpr int ORBIS_KERNEL_ERROR_ESDKVERSION = 0x80020063; // 2147614819 +constexpr int ORBIS_KERNEL_ERROR_ESTART = 0x80020064; // 2147614820 +constexpr int ORBIS_KERNEL_ERROR_ESTOP = 0x80020065; // 2147614821 -// Libkernel library -constexpr int ORBIS_KERNEL_ERROR_UNKNOWN = 0x80020000; -constexpr int ORBIS_KERNEL_ERROR_EPERM = 0x80020001; -constexpr int ORBIS_KERNEL_ERROR_ENOENT = 0x80020002; -constexpr int ORBIS_KERNEL_ERROR_ESRCH = 0x80020003; -constexpr int ORBIS_KERNEL_ERROR_EINTR = 0x80020004; -constexpr int ORBIS_KERNEL_ERROR_EIO = 0x80020005; -constexpr int ORBIS_KERNEL_ERROR_ENXIO = 0x80020006; -constexpr int ORBIS_KERNEL_ERROR_E2BIG = 0x80020007; -constexpr int ORBIS_KERNEL_ERROR_ENOEXEC = 0x80020008; -constexpr int ORBIS_KERNEL_ERROR_EBADF = 0x80020009; -constexpr int ORBIS_KERNEL_ERROR_ECHILD = 0x8002000A; -constexpr int ORBIS_KERNEL_ERROR_EDEADLK = 0x8002000B; -constexpr int ORBIS_KERNEL_ERROR_ENOMEM = 0x8002000C; -constexpr int ORBIS_KERNEL_ERROR_EACCES = 0x8002000D; -constexpr int ORBIS_KERNEL_ERROR_EFAULT = 0x8002000E; -constexpr int ORBIS_KERNEL_ERROR_ENOTBLK = 0x8002000F; -constexpr int ORBIS_KERNEL_ERROR_EBUSY = 0x80020010; -constexpr int ORBIS_KERNEL_ERROR_EEXIST = 0x80020011; -constexpr int ORBIS_KERNEL_ERROR_EXDEV = 0x80020012; -constexpr int ORBIS_KERNEL_ERROR_ENODEV = 0x80020013; -constexpr int ORBIS_KERNEL_ERROR_ENOTDIR = 0x80020014; -constexpr int ORBIS_KERNEL_ERROR_EISDIR = 0x80020015; -constexpr int ORBIS_KERNEL_ERROR_EINVAL = 0x80020016; -constexpr int ORBIS_KERNEL_ERROR_ENFILE = 0x80020017; -constexpr int ORBIS_KERNEL_ERROR_EMFILE = 0x80020018; -constexpr int ORBIS_KERNEL_ERROR_ENOTTY = 0x80020019; -constexpr int ORBIS_KERNEL_ERROR_ETXTBSY = 0x8002001A; -constexpr int ORBIS_KERNEL_ERROR_EFBIG = 0x8002001B; -constexpr int ORBIS_KERNEL_ERROR_ENOSPC = 0x8002001C; -constexpr int ORBIS_KERNEL_ERROR_ESPIPE = 0x8002001D; -constexpr int ORBIS_KERNEL_ERROR_EROFS = 0x8002001E; -constexpr int ORBIS_KERNEL_ERROR_EMLINK = 0x8002001F; -constexpr int ORBIS_KERNEL_ERROR_EPIPE = 0x80020020; -constexpr int ORBIS_KERNEL_ERROR_EDOM = 0x80020021; -constexpr int ORBIS_KERNEL_ERROR_ERANGE = 0x80020022; -constexpr int ORBIS_KERNEL_ERROR_EAGAIN = 0x80020023; -constexpr int ORBIS_KERNEL_ERROR_EWOULDBLOCK = 0x80020023; -constexpr int ORBIS_KERNEL_ERROR_EINPROGRESS = 0x80020024; -constexpr int ORBIS_KERNEL_ERROR_EALREADY = 0x80020025; -constexpr int ORBIS_KERNEL_ERROR_ENOTSOCK = 0x80020026; -constexpr int ORBIS_KERNEL_ERROR_EDESTADDRREQ = 0x80020027; -constexpr int ORBIS_KERNEL_ERROR_EMSGSIZE = 0x80020028; -constexpr int ORBIS_KERNEL_ERROR_EPROTOTYPE = 0x80020029; -constexpr int ORBIS_KERNEL_ERROR_ENOPROTOOPT = 0x8002002A; -constexpr int ORBIS_KERNEL_ERROR_EPROTONOSUPPORT = 0x8002002B; -constexpr int ORBIS_KERNEL_ERROR_ESOCKTNOSUPPORT = 0x8002002C; -constexpr int ORBIS_KERNEL_ERROR_ENOTSUP = 0x8002002D; -constexpr int ORBIS_KERNEL_ERROR_EOPNOTSUPP = 0x8002002D; -constexpr int ORBIS_KERNEL_ERROR_EPFNOSUPPORT = 0x8002002E; -constexpr int ORBIS_KERNEL_ERROR_EAFNOSUPPORT = 0x8002002F; -constexpr int ORBIS_KERNEL_ERROR_EADDRINUSE = 0x80020030; -constexpr int ORBIS_KERNEL_ERROR_EADDRNOTAVAIL = 0x80020031; -constexpr int ORBIS_KERNEL_ERROR_ENETDOWN = 0x80020032; -constexpr int ORBIS_KERNEL_ERROR_ENETUNREACH = 0x80020033; -constexpr int ORBIS_KERNEL_ERROR_ENETRESET = 0x80020034; -constexpr int ORBIS_KERNEL_ERROR_ECONNABORTED = 0x80020035; -constexpr int ORBIS_KERNEL_ERROR_ECONNRESET = 0x80020036; -constexpr int ORBIS_KERNEL_ERROR_ENOBUFS = 0x80020037; -constexpr int ORBIS_KERNEL_ERROR_EISCONN = 0x80020038; -constexpr int ORBIS_KERNEL_ERROR_ENOTCONN = 0x80020039; -constexpr int ORBIS_KERNEL_ERROR_ESHUTDOWN = 0x8002003A; -constexpr int ORBIS_KERNEL_ERROR_ETOOMANYREFS = 0x8002003B; -constexpr int ORBIS_KERNEL_ERROR_ETIMEDOUT = 0x8002003C; -constexpr int ORBIS_KERNEL_ERROR_ECONNREFUSED = 0x8002003D; -constexpr int ORBIS_KERNEL_ERROR_ELOOP = 0x8002003E; -constexpr int ORBIS_KERNEL_ERROR_ENAMETOOLONG = 0x8002003F; -constexpr int ORBIS_KERNEL_ERROR_EHOSTDOWN = 0x80020040; -constexpr int ORBIS_KERNEL_ERROR_EHOSTUNREACH = 0x80020041; -constexpr int ORBIS_KERNEL_ERROR_ENOTEMPTY = 0x80020042; -constexpr int ORBIS_KERNEL_ERROR_EPROCLIM = 0x80020043; -constexpr int ORBIS_KERNEL_ERROR_EUSERS = 0x80020044; -constexpr int ORBIS_KERNEL_ERROR_EDQUOT = 0x80020045; -constexpr int ORBIS_KERNEL_ERROR_ESTALE = 0x80020046; -constexpr int ORBIS_KERNEL_ERROR_EREMOTE = 0x80020047; -constexpr int ORBIS_KERNEL_ERROR_EBADRPC = 0x80020048; -constexpr int ORBIS_KERNEL_ERROR_ERPCMISMATCH = 0x80020049; -constexpr int ORBIS_KERNEL_ERROR_EPROGUNAVAIL = 0x8002004A; -constexpr int ORBIS_KERNEL_ERROR_EPROGMISMATCH = 0x8002004B; -constexpr int ORBIS_KERNEL_ERROR_EPROCUNAVAIL = 0x8002004C; -constexpr int ORBIS_KERNEL_ERROR_ENOLCK = 0x8002004D; -constexpr int ORBIS_KERNEL_ERROR_ENOSYS = 0x8002004E; -constexpr int ORBIS_KERNEL_ERROR_EFTYPE = 0x8002004F; -constexpr int ORBIS_KERNEL_ERROR_EAUTH = 0x80020050; -constexpr int ORBIS_KERNEL_ERROR_ENEEDAUTH = 0x80020051; -constexpr int ORBIS_KERNEL_ERROR_EIDRM = 0x80020052; -constexpr int ORBIS_KERNEL_ERROR_ENOMSG = 0x80020053; -constexpr int ORBIS_KERNEL_ERROR_EOVERFLOW = 0x80020054; -constexpr int ORBIS_KERNEL_ERROR_ECANCELED = 0x80020055; -constexpr int ORBIS_KERNEL_ERROR_EILSEQ = 0x80020056; -constexpr int ORBIS_KERNEL_ERROR_ENOATTR = 0x80020057; -constexpr int ORBIS_KERNEL_ERROR_EDOOFUS = 0x80020058; -constexpr int ORBIS_KERNEL_ERROR_EBADMSG = 0x80020059; -constexpr int ORBIS_KERNEL_ERROR_EMULTIHOP = 0x8002005A; -constexpr int ORBIS_KERNEL_ERROR_ENOLINK = 0x8002005B; -constexpr int ORBIS_KERNEL_ERROR_EPROTO = 0x8002005C; -constexpr int ORBIS_KERNEL_ERROR_ENOTCAPABLE = 0x8002005D; -constexpr int ORBIS_KERNEL_ERROR_ECAPMODE = 0x8002005E; -constexpr int ORBIS_KERNEL_ERROR_ENOBLK = 0x8002005F; -constexpr int ORBIS_KERNEL_ERROR_EICV = 0x80020060; -constexpr int ORBIS_KERNEL_ERROR_ENOPLAYGOENT = 0x80020061; +// AudioIn library +constexpr int ORBIS_AUDIO_IN_ERROR_BUSY = 0x8026010a; // 2149974282 +constexpr int ORBIS_AUDIO_IN_ERROR_FATAL = 0x80260100; // 2149974272 +constexpr int ORBIS_AUDIO_IN_ERROR_INVALID_FREQ = 0x80260103; // 2149974275 +constexpr int ORBIS_AUDIO_IN_ERROR_INVALID_HANDLE = 0x80260101; // 2149974273 +constexpr int ORBIS_AUDIO_IN_ERROR_INVALID_PARAM = 0x80260106; // 2149974278 +constexpr int ORBIS_AUDIO_IN_ERROR_INVALID_POINTER = 0x80260105; // 2149974277 +constexpr int ORBIS_AUDIO_IN_ERROR_INVALID_SIZE = 0x80260102; // 2149974274 +constexpr int ORBIS_AUDIO_IN_ERROR_INVALID_TYPE = 0x80260104; // 2149974276 +constexpr int ORBIS_AUDIO_IN_ERROR_NOT_OPENED = 0x80260109; // 2149974281 +constexpr int ORBIS_AUDIO_IN_ERROR_OUT_OF_MEMORY = 0x80260108; // 2149974280 +constexpr int ORBIS_AUDIO_IN_ERROR_PORT_FULL = 0x80260107; // 2149974279 +constexpr int ORBIS_AUDIO_IN_ERROR_SYSTEM_IPC = 0x8026010c; // 2149974284 +constexpr int ORBIS_AUDIO_IN_ERROR_SYSTEM_MEMORY = 0x8026010b; // 2149974283 + +// Audio3D library +constexpr int ORBIS_AUDIO3D_ERROR_INVALID_OBJECT = 0x80ea0003; // 2162819075 +constexpr int ORBIS_AUDIO3D_ERROR_INVALID_PARAMETER = 0x80ea0004; // 2162819076 +constexpr int ORBIS_AUDIO3D_ERROR_INVALID_PORT = 0x80ea0002; // 2162819074 +constexpr int ORBIS_AUDIO3D_ERROR_NOT_READY = 0x80ea0007; // 2162819079 +constexpr int ORBIS_AUDIO3D_ERROR_OUT_OF_MEMORY = 0x80ea0005; // 2162819077 +constexpr int ORBIS_AUDIO3D_ERROR_OUT_OF_RESOURCES = 0x80ea0006; // 2162819078 +constexpr int ORBIS_AUDIO3D_ERROR_TOO_MANY_CHANNELS = 0x80ea0008; // 2162819080 +constexpr int ORBIS_AUDIO3D_ERROR_UNKNOWN = 0x80ea0001; // 2162819073 + +// AudioDEC library +constexpr int ORBIS_AUDIODEC_CPU_ERROR_DDP_ARG = 0x80f70501; // 2163672321 +constexpr int ORBIS_AUDIODEC_CPU_ERROR_DDP_CLEAR_CONTEXT_FAIL = 0x80f70505; // 2163672325 +constexpr int ORBIS_AUDIODEC_CPU_ERROR_DDP_CREATE_DEC_FAIL = 0x80f70503; // 2163672323 +constexpr int ORBIS_AUDIODEC_CPU_ERROR_DDP_DECODE_FAIL = 0x80f70504; // 2163672324 +constexpr int ORBIS_AUDIODEC_CPU_ERROR_DDP_FAIL = 0x80f70500; // 2163672320 +constexpr int ORBIS_AUDIODEC_CPU_ERROR_DDP_MEM_FAIL = 0x80f70502; // 2163672322 +constexpr int ORBIS_AUDIODEC_ERROR_AC3_INVALID_DUAL_MONO_REPRODUCTION_MODE = + 0x807f0407; // 2155807751 +constexpr int ORBIS_AUDIODEC_ERROR_AC3_INVALID_DYNAMIC_RANGE_COMPRESSION_MODE = + 0x807f0401; // 2155807745 +constexpr int ORBIS_AUDIODEC_ERROR_AC3_INVALID_HIGH_FREQUENCY_DYNAMIC_CUT_SCALE_FACTOR = + 0x807f0408; // 2155807752 +constexpr int ORBIS_AUDIODEC_ERROR_AC3_INVALID_KARAOKE_CAPABLE_REPRODUCTION_MODE = + 0x807f0400; // 2155807744 +constexpr int ORBIS_AUDIODEC_ERROR_AC3_INVALID_LFE_CHANNEL_OUTPUT_MODE = 0x807f0402; // 2155807746 +constexpr int ORBIS_AUDIODEC_ERROR_AC3_INVALID_LOW_FREQUENCY_DYNAMIC_BOOST_SCALE_FACTOR = + 0x807f0409; // 2155807753 +constexpr int ORBIS_AUDIODEC_ERROR_AC3_INVALID_NUMBER_OF_OUTPUT_CHANNELS = 0x807f0404; // 2155807748 +constexpr int ORBIS_AUDIODEC_ERROR_AC3_INVALID_OUTPUT_CHANNEL_CONFIGRATION = + 0x807f0403; // 2155807747 +constexpr int ORBIS_AUDIODEC_ERROR_AC3_INVALID_OUTPUT_CHANNEL_ROUTING = 0x807f040a; // 2155807754 +constexpr int ORBIS_AUDIODEC_ERROR_AC3_INVALID_OUTPUT_PCM_SAMPLES_SCALE_FACTOR = + 0x807f0405; // 2155807749 +constexpr int ORBIS_AUDIODEC_ERROR_AC3_INVALID_STEREO_MODE = 0x807f0406; // 2155807750 +constexpr int ORBIS_AUDIODEC_ERROR_API_FAIL = 0x807f0000; // 2155806720 +constexpr int ORBIS_AUDIODEC_ERROR_ARG = 0x807f0002; // 2155806722 +constexpr int ORBIS_AUDIODEC_ERROR_AT9_INVALID_CONFIG_DATA = 0x807f1000; // 2155810816 +constexpr int ORBIS_AUDIODEC_ERROR_INVALID_AU_INFO_POINTER = 0x807f000b; // 2155806731 +constexpr int ORBIS_AUDIODEC_ERROR_INVALID_AU_INFO_SIZE = 0x807f0006; // 2155806726 +constexpr int ORBIS_AUDIODEC_ERROR_INVALID_AU_POINTER = 0x807f000d; // 2155806733 +constexpr int ORBIS_AUDIODEC_ERROR_INVALID_AU_SIZE = 0x807f0011; // 2155806737 +constexpr int ORBIS_AUDIODEC_ERROR_INVALID_BSI_INFO_POINTER = 0x807f000a; // 2155806730 +constexpr int ORBIS_AUDIODEC_ERROR_INVALID_BSI_INFO_SIZE = 0x807f0005; // 2155806725 +constexpr int ORBIS_AUDIODEC_ERROR_INVALID_CTRL_POINTER = 0x807f0008; // 2155806728 +constexpr int ORBIS_AUDIODEC_ERROR_INVALID_HANDLE = 0x807f000f; // 2155806735 +constexpr int ORBIS_AUDIODEC_ERROR_INVALID_PARAM_POINTER = 0x807f0009; // 2155806729 +constexpr int ORBIS_AUDIODEC_ERROR_INVALID_PARAM_SIZE = 0x807f0004; // 2155806724 +constexpr int ORBIS_AUDIODEC_ERROR_INVALID_PCM_ITEM_POINTER = 0x807f000c; // 2155806732 +constexpr int ORBIS_AUDIODEC_ERROR_INVALID_PCM_ITEM_SIZE = 0x807f0007; // 2155806727 +constexpr int ORBIS_AUDIODEC_ERROR_INVALID_PCM_POINTER = 0x807f000e; // 2155806734 +constexpr int ORBIS_AUDIODEC_ERROR_INVALID_PCM_SIZE = 0x807f0012; // 2155806738 +constexpr int ORBIS_AUDIODEC_ERROR_INVALID_SIZE = 0x807f0003; // 2155806723 +constexpr int ORBIS_AUDIODEC_ERROR_INVALID_TYPE = 0x807f0001; // 2155806721 +constexpr int ORBIS_AUDIODEC_ERROR_INVALID_WORD_LENGTH = 0x807f0010; // 2155806736 +constexpr int ORBIS_AUDIODEC_ERROR_M2BC_INVALID_DOWNMIX = 0x807f0a00; // 2155809280 +constexpr int ORBIS_AUDIODEC_ERROR_M4AAC_INVALID_CONFIG_NUMBER = 0x807f0303; // 2155807491 +constexpr int ORBIS_AUDIODEC_ERROR_M4AAC_INVALID_ENABLE_HEAAC = 0x807f0302; // 2155807490 +constexpr int ORBIS_AUDIODEC_ERROR_M4AAC_INVALID_ENABLE_NONDELAY_OUTPUT = 0x807f0305; // 2155807493 +constexpr int ORBIS_AUDIODEC_ERROR_M4AAC_INVALID_MAX_CHANNELS = 0x807f0304; // 2155807492 +constexpr int ORBIS_AUDIODEC_ERROR_M4AAC_INVALID_SAMPLING_FREQ = 0x807f0300; // 2155807488 +constexpr int ORBIS_AUDIODEC_ERROR_M4AAC_INVALID_SURROUND_CHANNEL_INTERLEAVE_ORDER = + 0x807f0306; // 2155807494 +constexpr int ORBIS_AUDIODEC_ERROR_TRHD_INVALID_DRC_BOOST = 0x807f2004; // 2155814916 +constexpr int ORBIS_AUDIODEC_ERROR_TRHD_INVALID_DRC_CUT = 0x807f2003; // 2155814915 +constexpr int ORBIS_AUDIODEC_ERROR_TRHD_INVALID_DRC_ENABLE = 0x807f2002; // 2155814914 +constexpr int ORBIS_AUDIODEC_ERROR_TRHD_INVALID_LOSSLESS = 0x807f2001; // 2155814913 +constexpr int ORBIS_AUDIODEC_ERROR_TRHD_INVALID_NFRAME_DECODE = 0x807f2005; // 2155814917 +constexpr int ORBIS_AUDIODEC_ERROR_TRHD_INVALID_PRESENTATION_MODE = 0x807f2000; // 2155814912 +constexpr int ORBIS_AUDIODECCPU_ERROR_API_FAIL = 0x80f70000; // 2163671040 +constexpr int ORBIS_AUDIODECCPU_ERROR_ARG = 0x80f70002; // 2163671042 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_AU_INFO_POINTER = 0x80f7000c; // 2163671052 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_AU_INFO_SIZE = 0x80f70006; // 2163671046 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_AU_POINTER = 0x80f7000f; // 2163671055 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_AU_SIZE = 0x80f70013; // 2163671059 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_BSI_INFO_POINTER = 0x80f7000b; // 2163671051 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_BSI_INFO_SIZE = 0x80f70005; // 2163671045 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_CTRL_POINTER = 0x80f70009; // 2163671049 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_PARAM_POINTER = 0x80f7000a; // 2163671050 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_PARAM_SIZE = 0x80f70004; // 2163671044 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_PCM_ITEM_POINTER = 0x80f7000d; // 2163671053 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_PCM_ITEM_SIZE = 0x80f70007; // 2163671047 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_PCM_POINTER = 0x80f70010; // 2163671056 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_PCM_SIZE = 0x80f70014; // 2163671060 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_RESOURCE_POINTER = 0x80f7000e; // 2163671054 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_RESOURCE_SIZE = 0x80f70008; // 2163671048 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_SIZE = 0x80f70003; // 2163671043 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_TYPE = 0x80f70001; // 2163671041 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_WORD_LENGTH = 0x80f70012; // 2163671058 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_WORK_MEM_POINTER = 0x80f70011; // 2163671057 +constexpr int ORBIS_AUDIODECCPU_ERROR_INVALID_WORK_MEM_SIZE = 0x80f70015; // 2163671061 +constexpr int ORBIS_AUDIODECCPU_ERROR_M4AAC_INSUFFICIENT_BUFFER = 0x80f70305; // 2163671813 +constexpr int ORBIS_AUDIODECCPU_ERROR_M4AAC_INVALID_CONFIG_NUMBER = 0x80f70303; // 2163671811 +constexpr int ORBIS_AUDIODECCPU_ERROR_M4AAC_INVALID_DOWNMIX_MODE = 0x80f70304; // 2163671812 +constexpr int ORBIS_AUDIODECCPU_ERROR_M4AAC_INVALID_ENABLE_HEAAC = 0x80f70302; // 2163671810 +constexpr int ORBIS_AUDIODECCPU_ERROR_M4AAC_INVALID_ENABLE_NONDELAY_OUTPUT = + 0x80f70306; // 2163671814 +constexpr int ORBIS_AUDIODECCPU_ERROR_M4AAC_INVALID_MAX_CHANNELS = 0x80f70301; // 2163671809 +constexpr int ORBIS_AUDIODECCPU_ERROR_M4AAC_INVALID_SAMPLING_FREQ = 0x80f70300; // 2163671808 +constexpr int ORBIS_AUDIODECCPU_ERROR_M4AAC_INVALID_SURROUND_CHANNEL_INTERLEAVE_ORDER = + 0x80f70307; // 2163671815 // AudioOut library -constexpr int ORBIS_AUDIO_OUT_ERROR_NOT_OPENED = 0x80260001; -constexpr int ORBIS_AUDIO_OUT_ERROR_BUSY = 0x80260002; -constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_PORT = 0x80260003; -constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_POINTER = 0x80260004; -constexpr int ORBIS_AUDIO_OUT_ERROR_PORT_FULL = 0x80260005; -constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_SIZE = 0x80260006; -constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_FORMAT = 0x80260007; -constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_SAMPLE_FREQ = 0x80260008; -constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_VOLUME = 0x80260009; -constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_PORT_TYPE = 0x8026000A; -constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_CONF_TYPE = 0x8026000C; -constexpr int ORBIS_AUDIO_OUT_ERROR_OUT_OF_MEMORY = 0x8026000D; -constexpr int ORBIS_AUDIO_OUT_ERROR_ALREADY_INIT = 0x8026000E; -constexpr int ORBIS_AUDIO_OUT_ERROR_NOT_INIT = 0x8026000F; -constexpr int ORBIS_AUDIO_OUT_ERROR_MEMORY = 0x80260010; -constexpr int ORBIS_AUDIO_OUT_ERROR_SYSTEM_RESOURCE = 0x80260011; -constexpr int ORBIS_AUDIO_OUT_ERROR_TRANS_EVENT = 0x80260012; -constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_FLAG = 0x80260013; -constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_MIXLEVEL = 0x80260014; -constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_ARG = 0x80260015; -constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_PARAM = 0x80260016; -constexpr int ORBIS_AUDIO_OUT_ERROR_MASTERING_FATAL = 0x80260200; -constexpr int ORBIS_AUDIO_OUT_ERROR_MASTERING_INVALID_API_PARAM = 0x80260201; -constexpr int ORBIS_AUDIO_OUT_ERROR_MASTERING_INVALID_CONFIG = 0x80260202; -constexpr int ORBIS_AUDIO_OUT_ERROR_MASTERING_NOT_INITIALIZED = 0x80260203; -constexpr int ORBIS_AUDIO_OUT_ERROR_MASTERING_INVALID_STATES_ID = 0x80260204; +constexpr int ORBIS_AUDIO_OUT_ERROR_NOT_OPENED = 0x80260001; // 2149974017 +constexpr int ORBIS_AUDIO_OUT_ERROR_BUSY = 0x80260002; // 2149974018 +constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_PORT = 0x80260003; // 2149974019 +constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_POINTER = 0x80260004; // 2149974020 +constexpr int ORBIS_AUDIO_OUT_ERROR_PORT_FULL = 0x80260005; // 2149974021 +constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_SIZE = 0x80260006; // 2149974022 +constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_FORMAT = 0x80260007; // 2149974023 +constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_SAMPLE_FREQ = 0x80260008; // 2149974024 +constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_VOLUME = 0x80260009; // 2149974025 +constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_PORT_TYPE = 0x8026000A; // 2149974026 +constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_CONF_TYPE = 0x8026000C; // 2149974028 +constexpr int ORBIS_AUDIO_OUT_ERROR_OUT_OF_MEMORY = 0x8026000D; // 2149974029 +constexpr int ORBIS_AUDIO_OUT_ERROR_ALREADY_INIT = 0x8026000E; // 2149974030 +constexpr int ORBIS_AUDIO_OUT_ERROR_NOT_INIT = 0x8026000F; // 2149974031 +constexpr int ORBIS_AUDIO_OUT_ERROR_MEMORY = 0x80260010; // 2149974032 +constexpr int ORBIS_AUDIO_OUT_ERROR_SYSTEM_RESOURCE = 0x80260011; // 2149974033 +constexpr int ORBIS_AUDIO_OUT_ERROR_TRANS_EVENT = 0x80260012; // 2149974034 +constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_FLAG = 0x80260013; // 2149974035 +constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_MIXLEVEL = 0x80260014; // 2149974036 +constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_ARG = 0x80260015; // 2149974037 +constexpr int ORBIS_AUDIO_OUT_ERROR_INVALID_PARAM = 0x80260016; // 2149974038 +constexpr int ORBIS_AUDIO_OUT_ERROR_MASTERING_FATAL = 0x80260200; // 2149974528 +constexpr int ORBIS_AUDIO_OUT_ERROR_MASTERING_INVALID_API_PARAM = 0x80260201; // 2149974529 +constexpr int ORBIS_AUDIO_OUT_ERROR_MASTERING_INVALID_CONFIG = 0x80260202; // 2149974530 +constexpr int ORBIS_AUDIO_OUT_ERROR_MASTERING_NOT_INITIALIZED = 0x80260203; // 2149974531 +constexpr int ORBIS_AUDIO_OUT_ERROR_MASTERING_INVALID_STATES_ID = 0x80260204; // 2149974532 // VideoOut library -constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_VALUE = 0x80290001; -constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_ADDRESS = 0x80290002; -constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_PIXEL_FORMAT = 0x80290003; -constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_PITCH = 0x80290004; -constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_RESOLUTION = 0x80290005; -constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_FLIP_MODE = 0x80290006; -constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_TILING_MODE = 0x80290007; -constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_ASPECT_RATIO = 0x80290008; -constexpr int ORBIS_VIDEO_OUT_ERROR_RESOURCE_BUSY = 0x80290009; -constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_INDEX = 0x8029000A; -constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_HANDLE = 0x8029000B; -constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_EVENT_QUEUE = 0x8029000C; -constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_EVENT = 0x8029000D; -constexpr int ORBIS_VIDEO_OUT_ERROR_NO_EMPTY_SLOT = 0x8029000F; -constexpr int ORBIS_VIDEO_OUT_ERROR_SLOT_OCCUPIED = 0x80290010; -constexpr int ORBIS_VIDEO_OUT_ERROR_FLIP_QUEUE_FULL = 0x80290012; -constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_MEMORY = 0x80290013; -constexpr int ORBIS_VIDEO_OUT_ERROR_MEMORY_NOT_PHYSICALLY_CONTIGUOUS = 0x80290014; -constexpr int ORBIS_VIDEO_OUT_ERROR_MEMORY_INVALID_ALIGNMENT = 0x80290015; -constexpr int ORBIS_VIDEO_OUT_ERROR_UNSUPPORTED_OUTPUT_MODE = 0x80290016; -constexpr int ORBIS_VIDEO_OUT_ERROR_OVERFLOW = 0x80290017; -constexpr int ORBIS_VIDEO_OUT_ERROR_NO_DEVICE = 0x80290018; -constexpr int ORBIS_VIDEO_OUT_ERROR_UNAVAILABLE_OUTPUT_MODE = 0x80290019; -constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_OPTION = 0x8029001A; -constexpr int ORBIS_VIDEO_OUT_ERROR_UNKNOWN = 0x802900FE; -constexpr int ORBIS_VIDEO_OUT_ERROR_FATAL = 0x802900FF; -constexpr int ORBIS_VIDEO_OUT_ERROR_ENOMEM = 0x8029100C; +constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_VALUE = 0x80290001; // 2150170625 +constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_ADDRESS = 0x80290002; // 2150170626 +constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_PIXEL_FORMAT = 0x80290003; // 2150170627 +constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_PITCH = 0x80290004; // 2150170628 +constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_RESOLUTION = 0x80290005; // 2150170629 +constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_FLIP_MODE = 0x80290006; // 2150170630 +constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_TILING_MODE = 0x80290007; // 2150170631 +constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_ASPECT_RATIO = 0x80290008; // 2150170632 +constexpr int ORBIS_VIDEO_OUT_ERROR_RESOURCE_BUSY = 0x80290009; // 2150170633 +constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_INDEX = 0x8029000A; // 2150170634 +constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_HANDLE = 0x8029000B; // 2150170635 +constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_EVENT_QUEUE = 0x8029000C; // 2150170636 +constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_EVENT = 0x8029000D; // 2150170637 +constexpr int ORBIS_VIDEO_OUT_ERROR_NO_EMPTY_SLOT = 0x8029000F; // 2150170639 +constexpr int ORBIS_VIDEO_OUT_ERROR_SLOT_OCCUPIED = 0x80290010; // 2150170640 +constexpr int ORBIS_VIDEO_OUT_ERROR_FLIP_QUEUE_FULL = 0x80290012; // 2150170642 +constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_MEMORY = 0x80290013; // 2150170643 +constexpr int ORBIS_VIDEO_OUT_ERROR_MEMORY_NOT_PHYSICALLY_CONTIGUOUS = 0x80290014; // 2150170644 +constexpr int ORBIS_VIDEO_OUT_ERROR_MEMORY_INVALID_ALIGNMENT = 0x80290015; // 2150170645 +constexpr int ORBIS_VIDEO_OUT_ERROR_UNSUPPORTED_OUTPUT_MODE = 0x80290016; // 2150170646 +constexpr int ORBIS_VIDEO_OUT_ERROR_OVERFLOW = 0x80290017; // 2150170647 +constexpr int ORBIS_VIDEO_OUT_ERROR_NO_DEVICE = 0x80290018; // 2150170648 +constexpr int ORBIS_VIDEO_OUT_ERROR_UNAVAILABLE_OUTPUT_MODE = 0x80290019; // 2150170649 +constexpr int ORBIS_VIDEO_OUT_ERROR_INVALID_OPTION = 0x8029001A; // 2150170650 +constexpr int ORBIS_VIDEO_OUT_ERROR_UNKNOWN = 0x802900FE; // 2150170878 +constexpr int ORBIS_VIDEO_OUT_ERROR_FATAL = 0x802900FF; // 2150170879 +constexpr int ORBIS_VIDEO_OUT_ERROR_ENOMEM = 0x8029100C; // 2150174732 // Pad library -constexpr int ORBIS_PAD_ERROR_INVALID_ARG = 0x80920001; -constexpr int ORBIS_PAD_ERROR_INVALID_PORT = 0x80920002; -constexpr int ORBIS_PAD_ERROR_INVALID_HANDLE = 0x80920003; -constexpr int ORBIS_PAD_ERROR_ALREADY_OPENED = 0x80920004; -constexpr int ORBIS_PAD_ERROR_NOT_INITIALIZED = 0x80920005; -constexpr int ORBIS_PAD_ERROR_INVALID_LIGHTBAR_SETTING = 0x80920006; -constexpr int ORBIS_PAD_ERROR_DEVICE_NOT_CONNECTED = 0x80920007; -constexpr int ORBIS_PAD_ERROR_DEVICE_NO_HANDLE = 0x80920008; -constexpr int ORBIS_PAD_ERROR_FATAL = 0x809200FF; -constexpr int ORBIS_PAD_ERROR_NOT_PERMITTED = 0x80920101; -constexpr int ORBIS_PAD_ERROR_INVALID_BUFFER_LENGTH = 0x80920102; -constexpr int ORBIS_PAD_ERROR_INVALID_REPORT_LENGTH = 0x80920103; -constexpr int ORBIS_PAD_ERROR_INVALID_REPORT_ID = 0x80920104; -constexpr int ORBIS_PAD_ERROR_SEND_AGAIN = 0x80920105; +constexpr int ORBIS_PAD_ERROR_INVALID_ARG = 0x80920001; // 2157051905 +constexpr int ORBIS_PAD_ERROR_INVALID_PORT = 0x80920002; // 2157051906 +constexpr int ORBIS_PAD_ERROR_INVALID_HANDLE = 0x80920003; // 2157051907 +constexpr int ORBIS_PAD_ERROR_ALREADY_OPENED = 0x80920004; // 2157051908 +constexpr int ORBIS_PAD_ERROR_NOT_INITIALIZED = 0x80920005; // 2157051909 +constexpr int ORBIS_PAD_ERROR_INVALID_LIGHTBAR_SETTING = 0x80920006; // 2157051910 +constexpr int ORBIS_PAD_ERROR_DEVICE_NOT_CONNECTED = 0x80920007; // 2157051911 +constexpr int ORBIS_PAD_ERROR_DEVICE_NO_HANDLE = 0x80920008; // 2157051912 +constexpr int ORBIS_PAD_ERROR_FATAL = 0x809200FF; // 2157052159 +constexpr int ORBIS_PAD_ERROR_NOT_PERMITTED = 0x80920101; // 2157052161 +constexpr int ORBIS_PAD_ERROR_INVALID_BUFFER_LENGTH = 0x80920102; // 2157052162 +constexpr int ORBIS_PAD_ERROR_INVALID_REPORT_LENGTH = 0x80920103; // 2157052163 +constexpr int ORBIS_PAD_ERROR_INVALID_REPORT_ID = 0x80920104; // 2157052164 +constexpr int ORBIS_PAD_ERROR_SEND_AGAIN = 0x80920105; // 2157052165 +constexpr int ORBIS_PAD_TRACKER_ERROR_ALREADY_INIT = 0x80c40002; // 2160328706 +constexpr int ORBIS_PAD_TRACKER_ERROR_INVALID_ARG = 0x80c40003; // 2160328707 +constexpr int ORBIS_PAD_TRACKER_ERROR_INVALID_HANDLE = 0x80c40004; // 2160328708 +constexpr int ORBIS_PAD_TRACKER_ERROR_NOT_INIT = 0x80c40001; // 2160328705 // UserService library -constexpr int ORBIS_USER_SERVICE_ERROR_INTERNAL = 0x80960001; -constexpr int ORBIS_USER_SERVICE_ERROR_NOT_INITIALIZED = 0x80960002; -constexpr int ORBIS_USER_SERVICE_ERROR_ALREADY_INITIALIZED = 0x80960003; -constexpr int ORBIS_USER_SERVICE_ERROR_NO_MEMORY = 0x80960004; -constexpr int ORBIS_USER_SERVICE_ERROR_INVALID_ARGUMENT = 0x80960005; -constexpr int ORBIS_USER_SERVICE_ERROR_OPERATION_NOT_SUPPORTED = 0x80960006; -constexpr int ORBIS_USER_SERVICE_ERROR_NO_EVENT = 0x80960007; -constexpr int ORBIS_USER_SERVICE_ERROR_NOT_LOGGED_IN = 0x80960009; -constexpr int ORBIS_USER_SERVICE_ERROR_BUFFER_TOO_SHORT = 0x8096000A; +constexpr int ORBIS_USER_SERVICE_ERROR_ALREADY_INITIALIZED = 0x80960003; // 2157314051 +constexpr int ORBIS_USER_SERVICE_ERROR_BUFFER_TOO_SHORT = 0x8096000a; // 2157314058 +constexpr int ORBIS_USER_SERVICE_ERROR_BUSY = 0x80960106; // 2157314310 +constexpr int ORBIS_USER_SERVICE_ERROR_EVENT_REDUCED = 0x80960104; // 2157314308 +constexpr int ORBIS_USER_SERVICE_ERROR_INTERNAL = 0x80960001; // 2157314049 +constexpr int ORBIS_USER_SERVICE_ERROR_INVALID_ARGUMENT = 0x80960005; // 2157314053 +constexpr int ORBIS_USER_SERVICE_ERROR_NO_EVENT = 0x80960007; // 2157314055 +constexpr int ORBIS_USER_SERVICE_ERROR_NO_MEMORY = 0x80960004; // 2157314052 +constexpr int ORBIS_USER_SERVICE_ERROR_NO_SUCH_USER = 0x80960105; // 2157314309 +constexpr int ORBIS_USER_SERVICE_ERROR_NOT_INITIALIZED = 0x80960002; // 2157314050 +constexpr int ORBIS_USER_SERVICE_ERROR_NOT_LOGGED_IN = 0x80960009; // 2157314057 +constexpr int ORBIS_USER_SERVICE_ERROR_OPERATION_NOT_SUPPORTED = 0x80960006; // 2157314054 +constexpr int ORBIS_USER_SERVICE_ERROR_REGISTERED_USER_FULL = 0x80960102; // 2157314306 +constexpr int ORBIS_USER_SERVICE_ERROR_TOO_MANY_LOGIN_USERS = 0x80960101; // 2157314305 +constexpr int ORBIS_USER_SERVICE_ERROR_USER_ALREADY_REGISTERED = 0x80960103; // 2157314307 // SystemService library -constexpr int ORBIS_SYSTEM_SERVICE_ERROR_PARAMETER = 0x80A10003; +constexpr int ORBIS_SYSTEM_SERVICE_ERROR_INTERNAL = 0x80a10001; // 2158034945 +constexpr int ORBIS_SYSTEM_SERVICE_ERROR_INVALID_URI_LEN = 0x80a10007; // 2158034951 +constexpr int ORBIS_SYSTEM_SERVICE_ERROR_INVALID_URI_SCHEME = 0x80a10008; // 2158034952 +constexpr int ORBIS_SYSTEM_SERVICE_ERROR_NEED_DISPLAY_SAFE_AREA_SETTINGS = 0x80a10006; // 2158034950 +constexpr int ORBIS_SYSTEM_SERVICE_ERROR_NO_APP_INFO = 0x80a10009; // 2158034953 +constexpr int ORBIS_SYSTEM_SERVICE_ERROR_NO_EVENT = 0x80a10004; // 2158034948 +constexpr int ORBIS_SYSTEM_SERVICE_ERROR_PARAMETER = 0x80a10003; // 2158034947 +constexpr int ORBIS_SYSTEM_SERVICE_ERROR_REJECTED = 0x80a10005; // 2158034949 +constexpr int ORBIS_SYSTEM_SERVICE_ERROR_UNAVAILABLE = 0x80a10002; // 2158034946 // NpTrophy library -constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_ARGUMENT = 0x80551604; -constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_HANDLE = 0x80551608; -constexpr int ORBIS_NP_TROPHY_ERROR_HANDLE_EXCEEDS_MAX = 0x80551624; -constexpr int ORBIS_NP_TROPHY_ERROR_CONTEXT_ALREADY_EXISTS = 0x80551613; -constexpr int ORBIS_NP_TROPHY_ERROR_CONTEXT_EXCEEDS_MAX = 0x80551622; +constexpr int ORBIS_NP_TROPHY_ERROR_ABORT = 0x80551607; // 2153059847 +constexpr int ORBIS_NP_TROPHY_ERROR_ACCOUNTID_NOT_MATCH = 0x8055160e; // 2153059854 +constexpr int ORBIS_NP_TROPHY_ERROR_ALREADY_INITIALIZED = 0x80551602; // 2153059842 +constexpr int ORBIS_NP_TROPHY_ERROR_ALREADY_REGISTERED = 0x80551610; // 2153059856 +constexpr int ORBIS_NP_TROPHY_ERROR_APPLICATION_CONTEXT_ALREADY_EXISTS = 0x805516e2; // 2153060066 +constexpr int ORBIS_NP_TROPHY_ERROR_APPLICATION_CONTEXT_NOT_FOUND = 0x805516e3; // 2153060067 +constexpr int ORBIS_NP_TROPHY_ERROR_BIND_TITLE_NOT_FOUND = 0x805516d2; // 2153060050 +constexpr int ORBIS_NP_TROPHY_ERROR_BROKEN_DATA = 0x80551611; // 2153059857 +constexpr int ORBIS_NP_TROPHY_ERROR_BROKEN_TITLE_CONF = 0x80551627; // 2153059879 +constexpr int ORBIS_NP_TROPHY_ERROR_BUSY = 0x80551693; // 2153059987 +constexpr int ORBIS_NP_TROPHY_ERROR_CANCELED_BY_BG = 0x805516bb; // 2153060027 +constexpr int ORBIS_NP_TROPHY_ERROR_CANCELED_BY_CLIENT_CLOSED = 0x80551698; // 2153059992 +constexpr int ORBIS_NP_TROPHY_ERROR_CANCELED_BY_CLIENT_SUSPEND = 0x8055169b; // 2153059995 +constexpr int ORBIS_NP_TROPHY_ERROR_CANCELED_BY_GAME = 0x805516b9; // 2153060025 +constexpr int ORBIS_NP_TROPHY_ERROR_CANCELED_BY_LOGOUT = 0x805516d1; // 2153060049 +constexpr int ORBIS_NP_TROPHY_ERROR_CANCELED_BY_SYSTEM = 0x805516ba; // 2153060026 +constexpr int ORBIS_NP_TROPHY_ERROR_CANNOT_RECOVER_TITLE_ENTRY_INFO = 0x805516fa; // 2153060090 +constexpr int ORBIS_NP_TROPHY_ERROR_CONF_FILE_NP_COMM_ID_NOT_MATCH = 0x805516d6; // 2153060054 +constexpr int ORBIS_NP_TROPHY_ERROR_CONFSIGN_VERIFICATION_FAILURE = 0x8055168b; // 2153059979 +constexpr int ORBIS_NP_TROPHY_ERROR_CONTEXT_ALREADY_EXISTS = 0x80551613; // 2153059859 +constexpr int ORBIS_NP_TROPHY_ERROR_CONTEXT_EXCEEDS_MAX = 0x80551623; // 2153059875 +constexpr int ORBIS_NP_TROPHY_ERROR_CONTEXT_USER_LOGOUT = 0x8055161e; // 2153059870 +constexpr int ORBIS_NP_TROPHY_ERROR_DATA_FILE_ALREADY_OPENED = 0x805516a5; // 2153060005 +constexpr int ORBIS_NP_TROPHY_ERROR_DATA_FILE_BROKEN = 0x805516a2; // 2153060002 +constexpr int ORBIS_NP_TROPHY_ERROR_DATA_FILE_INVALID_FORMAT = 0x805516a3; // 2153060003 +constexpr int ORBIS_NP_TROPHY_ERROR_DATA_FILE_INVALID_TROPSYS = 0x805516ca; // 2153060042 +constexpr int ORBIS_NP_TROPHY_ERROR_DATA_FILE_KEY_NOT_FOUND = 0x805516a7; // 2153060007 +constexpr int ORBIS_NP_TROPHY_ERROR_DATA_FILE_LOCAL_BIND = 0x805516ce; // 2153060046 +constexpr int ORBIS_NP_TROPHY_ERROR_DATA_FILE_NOT_OPENED = 0x805516a6; // 2153060006 +constexpr int ORBIS_NP_TROPHY_ERROR_DATA_FILE_NOT_WORKING = 0x805516a8; // 2153060008 +constexpr int ORBIS_NP_TROPHY_ERROR_DATA_FILE_NP_COMM_ID_EXISTS = 0x805516e6; // 2153060070 +constexpr int ORBIS_NP_TROPHY_ERROR_DATA_FILE_NP_COMM_ID_NOT_MATCH = 0x805516ab; // 2153060011 +constexpr int ORBIS_NP_TROPHY_ERROR_DATA_FILE_NP_TITLE_ID_NOT_MATCH = 0x805516ac; // 2153060012 +constexpr int ORBIS_NP_TROPHY_ERROR_DATA_FILE_STATUS_NOT_MATCH = 0x805516aa; // 2153060010 +constexpr int ORBIS_NP_TROPHY_ERROR_DATA_FILE_TROPHY_TITLE_ID_NOT_MATCH = 0x805516ad; // 2153060013 +constexpr int ORBIS_NP_TROPHY_ERROR_DATA_FILE_UNSUPPORTED_VERSION = 0x805516a4; // 2153060004 +constexpr int ORBIS_NP_TROPHY_ERROR_DATA_FILE_WORKING = 0x805516a9; // 2153060009 +constexpr int ORBIS_NP_TROPHY_ERROR_DECRYPT_STREAM = 0x805516cc; // 2153060044 +constexpr int ORBIS_NP_TROPHY_ERROR_DUPLICATED_STORAGE_HANDLE = 0x8055169f; // 2153059999 +constexpr int ORBIS_NP_TROPHY_ERROR_EXCEEDS_MAX = 0x80551606; // 2153059846 +constexpr int ORBIS_NP_TROPHY_ERROR_FILE_ALREADY_OPENED = 0x8055168f; // 2153059983 +constexpr int ORBIS_NP_TROPHY_ERROR_FILE_NOT_OPENED = 0x8055168d; // 2153059981 +constexpr int ORBIS_NP_TROPHY_ERROR_GROUP_UNSUPPORTED = 0x80551688; // 2153059976 +constexpr int ORBIS_NP_TROPHY_ERROR_HANDLE_EXCEEDS_MAX = 0x80551624; // 2153059876 +constexpr int ORBIS_NP_TROPHY_ERROR_ICON_FILE_NOT_FOUND = 0x80551614; // 2153059860 +constexpr int ORBIS_NP_TROPHY_ERROR_IMAGE_FILE_CORRUPTED = 0x805516fb; // 2153060091 +constexpr int ORBIS_NP_TROPHY_ERROR_INCONSISTENT_TITLE_CONF = 0x80551628; // 2153059880 +constexpr int ORBIS_NP_TROPHY_ERROR_INST_SRC_SERVICE_LABEL_DUPLICATED = 0x805516f6; // 2153060086 +constexpr int ORBIS_NP_TROPHY_ERROR_INSUFFICIENT_BUFFER = 0x80551605; // 2153059845 +constexpr int ORBIS_NP_TROPHY_ERROR_INSUFFICIENT_SPACE = 0x80551612; // 2153059858 +constexpr int ORBIS_NP_TROPHY_ERROR_INT_CONTEXT_EXCEEDS_MAX = 0x805516f2; // 2153060082 +constexpr int ORBIS_NP_TROPHY_ERROR_INT_HANDLE_EXCEEDS_MAX = 0x805516f1; // 2153060081 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_ARBITER = 0x805516bd; // 2153060029 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_ARGUMENT = 0x80551604; // 2153059844 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_CONFSIGN = 0x80551697; // 2153059991 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_CONTEXT = 0x80551609; // 2153059849 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_FILE_NAME = 0x8055168e; // 2153059982 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_GRADE = 0x80551687; // 2153059975 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_GROUP_ID = 0x8055160b; // 2153059851 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_HANDLE = 0x80551608; // 2153059848 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_NP_SERVICE_LABEL = 0x80551621; // 2153059873 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_NP_TITLE_ID = 0x80551620; // 2153059872 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_NP_TITLE_ID_CONFIG = 0x805516d5; // 2153060053 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_NPCOMMID = 0x80551684; // 2153059972 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_NPCOMMSIGN = 0x80551685; // 2153059973 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_PLATFORM = 0x805516cd; // 2153060045 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_SIGNATURE = 0x80551694; // 2153059988 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_STORAGE = 0x805516a1; // 2153060001 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_STORAGE_HANDLE = 0x805516a0; // 2153060000 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_STREAM = 0x805516c1; // 2153060033 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_TROPHY_CONF_FORMAT = 0x80551618; // 2153059864 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_TROPHY_ID = 0x8055160a; // 2153059850 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_TRP_FILE_FORMAT = 0x80551616; // 2153059862 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_TRP_URI = 0x805516ee; // 2153060078 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_USER_CONTEXT = 0x805516bc; // 2153060028 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_USER_ID = 0x80551625; // 2153059877 +constexpr int ORBIS_NP_TROPHY_ERROR_INVALID_VALUE = 0x80551680; // 2153059968 +constexpr int ORBIS_NP_TROPHY_ERROR_MOUNT_POINT_NOT_MATCH = 0x8055169d; // 2153059997 +constexpr int ORBIS_NP_TROPHY_ERROR_NET_TRANS_FILE_COMMSIGN_NOT_FOUND = 0x805516e4; // 2153060068 +constexpr int ORBIS_NP_TROPHY_ERROR_NET_TRANS_FILE_INVALID_ENTRY_ATTR = 0x805516b3; // 2153060019 +constexpr int ORBIS_NP_TROPHY_ERROR_NET_TRANS_FILE_INVALID_ENTRY_TYPE = 0x805516b0; // 2153060016 +constexpr int ORBIS_NP_TROPHY_ERROR_NET_TRANS_FILE_NOT_FOUND = 0x805516b2; // 2153060018 +constexpr int ORBIS_NP_TROPHY_ERROR_NET_TRANS_FILE_TOO_MANY_ENTRIES = 0x805516b1; // 2153060017 +constexpr int ORBIS_NP_TROPHY_ERROR_NETWORK_SYNC_FAILED = 0x805516cf; // 2153060047 +constexpr int ORBIS_NP_TROPHY_ERROR_NO_BIND_INFO_IN_POSTING_ACTIVITY_OBSOLETE = + 0x805516ea; // 2153060074 +constexpr int ORBIS_NP_TROPHY_ERROR_NO_IMPL = 0x80551692; // 2153059986 +constexpr int ORBIS_NP_TROPHY_ERROR_NOT_INITIALIZED = 0x80551601; // 2153059841 +constexpr int ORBIS_NP_TROPHY_ERROR_NOT_REGISTERED = 0x8055160f; // 2153059855 +constexpr int ORBIS_NP_TROPHY_ERROR_NOT_SUPPORTED = 0x80551622; // 2153059874 +constexpr int ORBIS_NP_TROPHY_ERROR_NP_BIND_INFO_NOT_FOUND_OBSOLETE = 0x805516d3; // 2153060051 +constexpr int ORBIS_NP_TROPHY_ERROR_NPCOMMSIGN_NOT_FOUND = 0x805516f9; // 2153060089 +constexpr int ORBIS_NP_TROPHY_ERROR_NPCOMMSIGN_VERIFICATION_FAILURE = 0x80551686; // 2153059974 +constexpr int ORBIS_NP_TROPHY_ERROR_OUT_OF_MEMORY = 0x80551603; // 2153059843 +constexpr int ORBIS_NP_TROPHY_ERROR_PARSE_XML_ENTITY_FAILED = 0x805516c5; // 2153060037 +constexpr int ORBIS_NP_TROPHY_ERROR_PLATINUM_CANNOT_LOCK = 0x805516af; // 2153060015 +constexpr int ORBIS_NP_TROPHY_ERROR_PLATINUM_CANNOT_UNLOCK = 0x8055160d; // 2153059853 +constexpr int ORBIS_NP_TROPHY_ERROR_PROCESS_CONTEXT_ALREADY_EXISTS = 0x8055169c; // 2153059996 +constexpr int ORBIS_NP_TROPHY_ERROR_PROCESS_CONTEXT_NOT_FOUND = 0x8055169a; // 2153059994 +constexpr int ORBIS_NP_TROPHY_ERROR_PROMOTE_NP_BIND_INFO_NOT_FOUND_OBSOLETE = + 0x805516d4; // 2153060052 +constexpr int ORBIS_NP_TROPHY_ERROR_READ_ONLY_STORAGE = 0x805516ef; // 2153060079 +constexpr int ORBIS_NP_TROPHY_ERROR_RECOVERY_FAILED = 0x805516d7; // 2153060055 +constexpr int ORBIS_NP_TROPHY_ERROR_RECOVERY_REQUIRED = 0x805516c0; // 2153060032 +constexpr int ORBIS_NP_TROPHY_ERROR_SERVICE_APPLICATION_CONTEXT_EXCEEDS_MAX = + 0x805516e1; // 2153060065 +constexpr int ORBIS_NP_TROPHY_ERROR_SERVICE_ARBITER_SLOT_EXCEEDS_MAX = 0x805516da; // 2153060058 +constexpr int ORBIS_NP_TROPHY_ERROR_SERVICE_CONTEXT_SLOT_EXCEEDS_MAX = 0x805516dc; // 2153060060 +constexpr int ORBIS_NP_TROPHY_ERROR_SERVICE_HANDLE_SLOT_EXCEEDS_MAX = 0x805516dd; // 2153060061 +constexpr int ORBIS_NP_TROPHY_ERROR_SERVICE_LABEL_NOT_MATCH = 0x805516f7; // 2153060087 +constexpr int ORBIS_NP_TROPHY_ERROR_SERVICE_PROCESS_CONTEXT_EXCEEDS_MAX = 0x805516df; // 2153060063 +constexpr int ORBIS_NP_TROPHY_ERROR_SERVICE_STORAGE_SLOT_EXCEEDS_MAX = 0x805516db; // 2153060059 +constexpr int ORBIS_NP_TROPHY_ERROR_SERVICE_STREAM_SLOT_EXCEEDS_MAX = 0x805516de; // 2153060062 +constexpr int ORBIS_NP_TROPHY_ERROR_SERVICE_USER_CONTEXT_EXCEEDS_MAX = 0x805516e0; // 2153060064 +constexpr int ORBIS_NP_TROPHY_ERROR_SHA1_DIGEST_LEN_OBSOLETE = 0x80551696; // 2153059990 +constexpr int ORBIS_NP_TROPHY_ERROR_SHUTDOWN = 0x80551699; // 2153059993 +constexpr int ORBIS_NP_TROPHY_ERROR_SIGNATURE_VERIFICATION_FAILURE = 0x80551695; // 2153059989 +constexpr int ORBIS_NP_TROPHY_ERROR_SRVALUE_BROKEN = 0x80551681; // 2153059969 +constexpr int ORBIS_NP_TROPHY_ERROR_SRVALUE_EMPTY = 0x80551683; // 2153059971 +constexpr int ORBIS_NP_TROPHY_ERROR_SRVALUE_EXISTS = 0x80551682; // 2153059970 +constexpr int ORBIS_NP_TROPHY_ERROR_STORAGE_ALREADY_OPENED = 0x805516be; // 2153060030 +constexpr int ORBIS_NP_TROPHY_ERROR_STORAGE_BUSY = 0x8055169e; // 2153059998 +constexpr int ORBIS_NP_TROPHY_ERROR_STORAGE_NOT_OPENED = 0x805516bf; // 2153060031 +constexpr int ORBIS_NP_TROPHY_ERROR_STREAM_ALREADY_OPENED = 0x805516c8; // 2153060040 +constexpr int ORBIS_NP_TROPHY_ERROR_STREAM_NOT_OPENED = 0x8055168a; // 2153059978 +constexpr int ORBIS_NP_TROPHY_ERROR_SUMMARY_NOT_FOUND = 0x805516f8; // 2153060088 +constexpr int ORBIS_NP_TROPHY_ERROR_SYSTEM_CONTEXT_EXCEEDS_MAX = 0x805516d8; // 2153060056 +constexpr int ORBIS_NP_TROPHY_ERROR_SYSTEM_HANDLE_EXCEEDS_MAX = 0x805516d9; // 2153060057 +constexpr int ORBIS_NP_TROPHY_ERROR_TITLE_CONF_BROKEN_OBSOLETE = 0x805516c3; // 2153060035 +constexpr int ORBIS_NP_TROPHY_ERROR_TITLE_CONF_DIR_NOT_FOUND = 0x805516e8; // 2153060072 +constexpr int ORBIS_NP_TROPHY_ERROR_TITLE_CONF_NOT_FOUND_OBSOLETE = 0x805516f3; // 2153060083 +constexpr int ORBIS_NP_TROPHY_ERROR_TITLE_CONF_NOT_INSTALLED = 0x80551626; // 2153059878 +constexpr int ORBIS_NP_TROPHY_ERROR_TITLE_DATA_BROKEN = 0x805516e9; // 2153060073 +constexpr int ORBIS_NP_TROPHY_ERROR_TITLE_DATA_DIR_NOT_FOUND = 0x805516e7; // 2153060071 +constexpr int ORBIS_NP_TROPHY_ERROR_TITLE_DATA_FILE_NOT_FOUND = 0x805516ae; // 2153060014 +constexpr int ORBIS_NP_TROPHY_ERROR_TITLE_DATA_NOT_FOUND = 0x805516f4; // 2153060084 +constexpr int ORBIS_NP_TROPHY_ERROR_TITLE_NOT_FOUND = 0x805516c2; // 2153060034 +constexpr int ORBIS_NP_TROPHY_ERROR_TITLE_NP_COMM_ID_NOT_MATCH = 0x805516e5; // 2153060069 +constexpr int ORBIS_NP_TROPHY_ERROR_TITLE_PARAM_FILE_BROKEN = 0x805516b8; // 2153060024 +constexpr int ORBIS_NP_TROPHY_ERROR_TITLE_PARAM_FILE_NOT_FOUND = 0x805516b7; // 2153060023 +constexpr int ORBIS_NP_TROPHY_ERROR_TOO_MANY_INST_SRC_ENTRY = 0x805516f5; // 2153060085 +constexpr int ORBIS_NP_TROPHY_ERROR_TROPHY_ALREADY_UNLOCKED = 0x8055160c; // 2153059852 +constexpr int ORBIS_NP_TROPHY_ERROR_TROPHY_CONF_FILE_NOT_FOUND = 0x805516c4; // 2153060036 +constexpr int ORBIS_NP_TROPHY_ERROR_TROPHY_IS_NOT_PLATINUM = 0x80551689; // 2153059977 +constexpr int ORBIS_NP_TROPHY_ERROR_TROPHY_NOT_UNLOCKED = 0x8055161a; // 2153059866 +constexpr int ORBIS_NP_TROPHY_ERROR_TROPHY_TITLE_ID_NOT_MATCH = 0x805516f0; // 2153060080 +constexpr int ORBIS_NP_TROPHY_ERROR_TRP_BUSY = 0x805516c7; // 2153060039 +constexpr int ORBIS_NP_TROPHY_ERROR_TRP_ENTRY_FILE_NOT_FOUND = 0x80551691; // 2153059985 +constexpr int ORBIS_NP_TROPHY_ERROR_TRP_FILE_NOT_FOUND = 0x80551615; // 2153059861 +constexpr int ORBIS_NP_TROPHY_ERROR_TRP_FILE_VERIFICATION_FAILURE = 0x8055168c; // 2153059980 +constexpr int ORBIS_NP_TROPHY_ERROR_TRP_TOO_MANY_OPEN = 0x80551690; // 2153059984 +constexpr int ORBIS_NP_TROPHY_ERROR_UNEXPECTED_EOF = 0x805516c6; // 2153060038 +constexpr int ORBIS_NP_TROPHY_ERROR_UNKNOWN = 0x80551600; // 2153059840 +constexpr int ORBIS_NP_TROPHY_ERROR_UNKNOWN_BOOT_TYPE = 0x805516eb; // 2153060075 +constexpr int ORBIS_NP_TROPHY_ERROR_UNLOCK_DENIED = 0x8055161b; // 2153059867 +constexpr int ORBIS_NP_TROPHY_ERROR_UNSUPPORTED_TROPHY_CONF = 0x80551619; // 2153059865 +constexpr int ORBIS_NP_TROPHY_ERROR_UNSUPPORTED_TROPHY_SYSTEM = 0x805516c9; // 2153060041 +constexpr int ORBIS_NP_TROPHY_ERROR_UNSUPPORTED_TRP_FILE = 0x80551617; // 2153059863 +constexpr int ORBIS_NP_TROPHY_ERROR_UNSUPPORTED_TRP_KEY = 0x805516cb; // 2153060043 +constexpr int ORBIS_NP_TROPHY_ERROR_USE_TRP_FOR_DEVELOPMENT = 0x8055161f; // 2153059871 +constexpr int ORBIS_NP_TROPHY_ERROR_USER_CONTEXT_NOT_FOUND = 0x805516d0; // 2153060048 +constexpr int ORBIS_NP_TROPHY_ERROR_USER_DATA_FILE_NOT_FOUND = 0x805516b4; // 2153060020 +constexpr int ORBIS_NP_TROPHY_ERROR_USER_DATA_FILE_TITLE_ALREADY_EXISTS = 0x805516b6; // 2153060022 +constexpr int ORBIS_NP_TROPHY_ERROR_USER_DATA_FILE_TITLE_NOT_FOUND = 0x805516b5; // 2153060021 +constexpr int ORBIS_NP_TROPHY_ERROR_USER_NOT_FOUND = 0x8055161c; // 2153059868 +constexpr int ORBIS_NP_TROPHY_ERROR_USER_NOT_LOGGED_IN = 0x8055161d; // 2153059869 +constexpr int ORBIS_NP_TROPHY_ERROR_USER_SUMMARY_FILE_BROKEN = 0x805516ec; // 2153060076 +constexpr int ORBIS_NP_TROPHY_ERROR_USER_SUMMARY_FILE_NOT_FOUND = 0x805516ed; // 2153060077 +constexpr int ORBIS_NP_TROPHY_NET_ERROR_BAD_RESPONSE = 0x80551709; // 2153060105 +constexpr int ORBIS_NP_TROPHY_NET_ERROR_BAD_STATUS = 0x8055170d; // 2153060109 +constexpr int ORBIS_NP_TROPHY_NET_ERROR_BEFORE_SERVICE = 0x80551708; // 2153060104 +constexpr int ORBIS_NP_TROPHY_NET_ERROR_BUILD_REQUEST = 0x8055170b; // 2153060107 +constexpr int ORBIS_NP_TROPHY_NET_ERROR_END_OF_SERVICE = 0x80551707; // 2153060103 +constexpr int ORBIS_NP_TROPHY_NET_ERROR_FILE_ALREADY_OPENED = 0x80551702; // 2153060098 +constexpr int ORBIS_NP_TROPHY_NET_ERROR_FILE_NOT_FOUND = 0x80551701; // 2153060097 +constexpr int ORBIS_NP_TROPHY_NET_ERROR_FILE_NOT_OPENED = 0x80551703; // 2153060099 +constexpr int ORBIS_NP_TROPHY_NET_ERROR_INVALID_SIGNATURE = 0x8055170a; // 2153060106 +constexpr int ORBIS_NP_TROPHY_NET_ERROR_MAINTENANCE = 0x80551706; // 2153060102 +constexpr int ORBIS_NP_TROPHY_NET_ERROR_SERVICE_UNAVAILABLE = 0x80551705; // 2153060101 +constexpr int ORBIS_NP_TROPHY_NET_ERROR_STORAGE_ALREADY_OPENED = 0x8055170e; // 2153060110 +constexpr int ORBIS_NP_TROPHY_NET_ERROR_STORAGE_NOT_OPENED = 0x8055170f; // 2153060111 +constexpr int ORBIS_NP_TROPHY_NET_ERROR_TROPHY_CONF_FILE_NOT_FOUND = 0x80551704; // 2153060100 +constexpr int ORBIS_NP_TROPHY_NET_ERROR_UNKNOWN = 0x80551700; // 2153060096 +constexpr int ORBIS_NP_TROPHY_NET_ERROR_UNSUPPORTED_NET_CONF_FILE_KEY = 0x8055170c; // 2153060108 +constexpr int ORBIS_NP_TROPHY_SERVER_ERROR_BAD_REQUEST = 0x80551801; // 2153060353 +constexpr int ORBIS_NP_TROPHY_SERVER_ERROR_BANNED = 0x8055180a; // 2153060362 +constexpr int ORBIS_NP_TROPHY_SERVER_ERROR_BLACKLISTED_ID = 0x80551811; // 2153060369 +constexpr int ORBIS_NP_TROPHY_SERVER_ERROR_EXPIRED_TICKET = 0x80551804; // 2153060356 +constexpr int ORBIS_NP_TROPHY_SERVER_ERROR_INTERNAL_SERVER_ERROR = 0x80551807; // 2153060359 +constexpr int ORBIS_NP_TROPHY_SERVER_ERROR_INVALID_JID = 0x80551805; // 2153060357 +constexpr int ORBIS_NP_TROPHY_SERVER_ERROR_INVALID_SIGNATURE = 0x80551803; // 2153060355 +constexpr int ORBIS_NP_TROPHY_SERVER_ERROR_INVALID_TICKET = 0x80551802; // 2153060354 +constexpr int ORBIS_NP_TROPHY_SERVER_ERROR_NO_SUCH_TROPHY_USER = 0x80551847; // 2153060423 +constexpr int ORBIS_NP_TROPHY_SERVER_ERROR_NOT_AUTHORIZED = 0x80551863; // 2153060451 + +// TROPHY +constexpr int ORBIS_TROPHY_ERROR_ABORTED = 0x80ff0005; // 2164195333 +constexpr int ORBIS_TROPHY_ERROR_CANNOT_ENQUEUE = 0x80ff0004; // 2164195332 +constexpr int ORBIS_TROPHY_ERROR_DISK_FULL = 0x80ff000b; // 2164195339 +constexpr int ORBIS_TROPHY_ERROR_GET_VALUE_IN_JSON = 0x80ff0009; // 2164195337 +constexpr int ORBIS_TROPHY_ERROR_INVALID_JSON_FORMAT = 0x80ff000a; // 2164195338 +constexpr int ORBIS_TROPHY_ERROR_JOB_QUEUE_INVALID_STATE = 0x80ff0003; // 2164195331 +constexpr int ORBIS_TROPHY_ERROR_KEY_NOT_FOUND_IN_JSON = 0x80ff0008; // 2164195336 +constexpr int ORBIS_TROPHY_ERROR_NO_IMPL = 0x80ff0002; // 2164195330 +constexpr int ORBIS_TROPHY_ERROR_NOT_INITIALIZED_NS_CONTEXT = 0x80ff0006; // 2164195334 +constexpr int ORBIS_TROPHY_ERROR_OUT_OF_MEMORY = 0x80ff0001; // 2164195329 +constexpr int ORBIS_TROPHY_ERROR_SQLITE_ERROR = 0x80ff000c; // 2164195340 +constexpr int ORBIS_TROPHY_ERROR_UNKNOWN = 0x80ff0000; // 2164195328 +constexpr int ORBIS_TROPHY_ERROR_UNKNOWN_SERVER_RESPONSE = 0x80ff0007; // 2164195335 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_ABORT = 0x80559505; // 2153092357 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_ALREADY_INITIALIZED = 0x8055951d; // 2153092381 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_BUSY = 0x8055950e; // 2153092366 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_DB_ALREADY_OPENED = 0x8055950c; // 2153092364 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_DB_CORRUPTED = 0x80559509; // 2153092361 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_DB_NOT_OPENED = 0x80559515; // 2153092373 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_FILE_ALREADY_OPENED = 0x80559517; // 2153092375 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_FILE_NOT_FOUND = 0x80559516; // 2153092374 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_FILE_NOT_OPENED = 0x80559519; // 2153092377 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_INSUFFICIENT_BUFFER = 0x80559503; // 2153092355 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_INVALID_ARGUMENT = 0x80559501; // 2153092353 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_INVALID_DATA_TYPE = 0x80559507; // 2153092359 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_INVALID_DB_SCHEMA = 0x8055950a; // 2153092362 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_INVALID_HANDLE = 0x80559504; // 2153092356 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_INVALID_LSDB_CONTEXT = 0x8055950d; // 2153092365 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_LSDB_CORRUPTED = 0x80559513; // 2153092371 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_LSDB_GROUP_NOT_FOUND = 0x80559511; // 2153092369 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_LSDB_MIGRATION_REQUIRED = 0x8055950f; // 2153092367 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_LSDB_TITLE_BROKEN = 0x80559514; // 2153092372 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_LSDB_TITLE_NOT_FOUND = 0x80559510; // 2153092368 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_LSDB_TROPHY_NOT_FOUND = 0x80559512; // 2153092370 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_MEMORY_EXTEND = 0x80559518; // 2153092376 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_NO_DB_ATTRIBUTE = 0x80559508; // 2153092360 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_NO_RESULT = 0x80559506; // 2153092358 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_NOT_INITIALIZED = 0x8055951e; // 2153092382 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_OBJECT_ALREADY_INITIALIZED = 0x8055951b; // 2153092379 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_OBJECT_NOT_INITIALIZED = 0x8055951c; // 2153092380 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_OUT_OF_MEMORY = 0x80559502; // 2153092354 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_TITLE_DATA_BROKEN = 0x8055951a; // 2153092378 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_UNKNOWN = 0x80559500; // 2153092352 +constexpr int ORBIS_TROPHY_STORAGE_ERROR_UNSUPPORTED_DB_SCHEMA = 0x8055950b; // 2153092363 // AppContent library -constexpr int ORBIS_APP_CONTENT_ERROR_PARAMETER = 0x80D90002; +constexpr int ORBIS_APP_CONTENT_ERROR_BUSY = 0x80d90003; // 2161704963 +constexpr int ORBIS_APP_CONTENT_ERROR_CREATE_FULL = 0x80d9000e; // 2161704974 +constexpr int ORBIS_APP_CONTENT_ERROR_DOWNLOAD_ENTRY_FULL = 0x80d9000b; // 2161704971 +constexpr int ORBIS_APP_CONTENT_ERROR_DRM_NO_ENTITLEMENT = 0x80d90007; // 2161704967 +constexpr int ORBIS_APP_CONTENT_ERROR_GET_STORE_COUNTRY = 0x80d91000; // 2161709056 +constexpr int ORBIS_APP_CONTENT_ERROR_INTERNAL = 0x80d9000a; // 2161704970 +constexpr int ORBIS_APP_CONTENT_ERROR_INVALID_PKG = 0x80d9000c; // 2161704972 +constexpr int ORBIS_APP_CONTENT_ERROR_MOUNT_FULL = 0x80d90006; // 2161704966 +constexpr int ORBIS_APP_CONTENT_ERROR_MOUNT_OTHER_APP = 0x80d9000f; // 2161704975 +constexpr int ORBIS_APP_CONTENT_ERROR_NO_SPACE = 0x80d90008; // 2161704968 +constexpr int ORBIS_APP_CONTENT_ERROR_NOT_FOUND = 0x80d90005; // 2161704965 +constexpr int ORBIS_APP_CONTENT_ERROR_NOT_INITIALIZED = 0x80d90001; // 2161704961 +constexpr int ORBIS_APP_CONTENT_ERROR_NOT_MOUNTED = 0x80d90004; // 2161704964 +constexpr int ORBIS_APP_CONTENT_ERROR_NOT_SUPPORTED = 0x80d90009; // 2161704969 +constexpr int ORBIS_APP_CONTENT_ERROR_OTHER_APPLICATION_PKG = 0x80d9000d; // 2161704973 +constexpr int ORBIS_APP_CONTENT_ERROR_PARAMETER = 0x80D90002; // 2161704962 + +// App library +constexpr int ORBIS_APP_INST_UTIL_ERROR_NOT_INITIALIZED = 0x80a31000; // 2158170112 +constexpr int ORBIS_APP_INST_UTIL_ERROR_OUT_OF_MEMORY = 0x80a31001; // 2158170113 +constexpr int ORBIS_APP_INSTALLER_ERROR_ADDCONT_BROKEN = 0x80a3000b; // 2158166027 +constexpr int ORBIS_APP_INSTALLER_ERROR_APP_BROKEN = 0x80a30008; // 2158166024 +constexpr int ORBIS_APP_INSTALLER_ERROR_APP_IS_RUNNING = 0x80a3000c; // 2158166028 +constexpr int ORBIS_APP_INSTALLER_ERROR_APP_NOT_FOUND = 0x80a30004; // 2158166020 +constexpr int ORBIS_APP_INSTALLER_ERROR_APP_VER = 0x80a30011; // 2158166033 +constexpr int ORBIS_APP_INSTALLER_ERROR_CANCELED = 0x80a30013; // 2158166035 +constexpr int ORBIS_APP_INSTALLER_ERROR_CONTENT_ID_DISAGREE = 0x80a3000f; // 2158166031 +constexpr int ORBIS_APP_INSTALLER_ERROR_DB_DISABLE = 0x80a30012; // 2158166034 +constexpr int ORBIS_APP_INSTALLER_ERROR_DISC_NOT_INSERTED = 0x80a30005; // 2158166021 +constexpr int ORBIS_APP_INSTALLER_ERROR_ENTRYDIGEST = 0x80a30014; // 2158166036 +constexpr int ORBIS_APP_INSTALLER_ERROR_NOSPACE = 0x80a30002; // 2158166018 +constexpr int ORBIS_APP_INSTALLER_ERROR_NOSPACE_KERNEL = 0x80a30010; // 2158166032 +constexpr int ORBIS_APP_INSTALLER_ERROR_NOT_INSTALL = 0x80a3000e; // 2158166030 +constexpr int ORBIS_APP_INSTALLER_ERROR_OUT_OF_MEMORY = 0x80a30007; // 2158166023 +constexpr int ORBIS_APP_INSTALLER_ERROR_PARAM = 0x80a30003; // 2158166019 +constexpr int ORBIS_APP_INSTALLER_ERROR_PKG_INVALID_CONTENT_TYPE = 0x80a30009; // 2158166025 +constexpr int ORBIS_APP_INSTALLER_ERROR_PKG_INVALID_DRM_TYPE = 0x80a30006; // 2158166022 +constexpr int ORBIS_APP_INSTALLER_ERROR_SYSTEM_VERSION = 0x80a3000d; // 2158166029 +constexpr int ORBIS_APP_INSTALLER_ERROR_UNKNOWN = 0x80a30001; // 2158166017 +constexpr int ORBIS_APP_INSTALLER_ERROR_USED_APP_NOT_FOUND = 0x80a3000a; // 2158166026 +constexpr int ORBIS_APP_MESSAGING_ERROR_INTERNAL = 0x80c50001; // 2160394241 +constexpr int ORBIS_APP_MESSAGING_ERROR_NO_MEMORY = 0x80c50006; // 2160394246 +constexpr int ORBIS_APP_MESSAGING_ERROR_NO_MESSAGE = 0x80c50005; // 2160394245 +constexpr int ORBIS_APP_MESSAGING_ERROR_NO_SUCH_APP = 0x80c50007; // 2160394247 +constexpr int ORBIS_APP_MESSAGING_ERROR_NULL_POINTER = 0x80c50004; // 2160394244 +constexpr int ORBIS_APP_MESSAGING_ERROR_PAYLOAD_SIZE_TOO_LARGE = 0x80c50003; // 2160394243 +constexpr int ORBIS_APP_MESSAGING_ERROR_UNAVAILABLE = 0x80c50002; // 2160394242 + +// Http library +constexpr int ORBIS_HTTP_ERROR_ABORTED = 0x80431080; // 2151878784 +constexpr int ORBIS_HTTP_ERROR_AFTER_SEND = 0x80431066; // 2151878758 +constexpr int ORBIS_HTTP_ERROR_ALREADY_INITED = 0x80431020; // 2151878688 +constexpr int ORBIS_HTTP_ERROR_BAD_RESPONSE = 0x80431064; // 2151878756 +constexpr int ORBIS_HTTP_ERROR_BEFORE_INIT = 0x80431001; // 2151878657 +constexpr int ORBIS_HTTP_ERROR_BEFORE_SEND = 0x80431065; // 2151878757 +constexpr int ORBIS_HTTP_ERROR_BROKEN = 0x80431085; // 2151878789 +constexpr int ORBIS_HTTP_ERROR_BUSY = 0x80431021; // 2151878689 +constexpr int ORBIS_HTTP_ERROR_CHUNK_ENC = 0x80431072; // 2151878770 +constexpr int ORBIS_HTTP_ERROR_EAGAIN = 0x80431082; // 2151878786 +constexpr int ORBIS_HTTP_ERROR_INSUFFICIENT_STACKSIZE = 0x80431076; // 2151878774 +constexpr int ORBIS_HTTP_ERROR_INVALID_ID = 0x80431100; // 2151878912 +constexpr int ORBIS_HTTP_ERROR_INVALID_URL = 0x80433060; // 2151886944 +constexpr int ORBIS_HTTP_ERROR_INVALID_VALUE = 0x804311fe; // 2151879166 +constexpr int ORBIS_HTTP_ERROR_INVALID_VERSION = 0x8043106a; // 2151878762 +constexpr int ORBIS_HTTP_ERROR_NETWORK = 0x80431063; // 2151878755 +constexpr int ORBIS_HTTP_ERROR_NO_CONTENT_LENGTH = 0x80431071; // 2151878769 +constexpr int ORBIS_HTTP_ERROR_NOT_FOUND = 0x80431025; // 2151878693 +constexpr int ORBIS_HTTP_ERROR_NOT_IN_COM = 0x80431070; // 2151878768 +constexpr int ORBIS_HTTP_ERROR_OUT_OF_MEMORY = 0x80431022; // 2151878690 +constexpr int ORBIS_HTTP_ERROR_OUT_OF_SIZE = 0x80431104; // 2151878916 +constexpr int ORBIS_HTTP_ERROR_PARSE_HTTP_INVALID_RESPONSE = 0x80432060; // 2151882848 +constexpr int ORBIS_HTTP_ERROR_PARSE_HTTP_INVALID_VALUE = 0x804321fe; // 2151883262 +constexpr int ORBIS_HTTP_ERROR_PARSE_HTTP_NOT_FOUND = 0x80432025; // 2151882789 +constexpr int ORBIS_HTTP_ERROR_PROXY = 0x80431084; // 2151878788 +constexpr int ORBIS_HTTP_ERROR_READ_BY_HEAD_METHOD = 0x8043106f; // 2151878767 +constexpr int ORBIS_HTTP_ERROR_RESOLVER_EFORMAT = 0x80436005; // 2151899141 +constexpr int ORBIS_HTTP_ERROR_RESOLVER_ENODNS = 0x80436002; // 2151899138 +constexpr int ORBIS_HTTP_ERROR_RESOLVER_ENOHOST = 0x80436007; // 2151899143 +constexpr int ORBIS_HTTP_ERROR_RESOLVER_ENORECORD = 0x8043600a; // 2151899146 +constexpr int ORBIS_HTTP_ERROR_RESOLVER_ENOSUPPORT = 0x80436004; // 2151899140 +constexpr int ORBIS_HTTP_ERROR_RESOLVER_ENOTIMPLEMENTED = 0x80436008; // 2151899144 +constexpr int ORBIS_HTTP_ERROR_RESOLVER_EPACKET = 0x80436001; // 2151899137 +constexpr int ORBIS_HTTP_ERROR_RESOLVER_ESERVERFAILURE = 0x80436006; // 2151899142 +constexpr int ORBIS_HTTP_ERROR_RESOLVER_ESERVERREFUSED = 0x80436009; // 2151899145 +constexpr int ORBIS_HTTP_ERROR_RESOLVER_ETIMEDOUT = 0x80436003; // 2151899139 +constexpr int ORBIS_HTTP_ERROR_SSL = 0x80431075; // 2151878773 +constexpr int ORBIS_HTTP_ERROR_TIMEOUT = 0x80431068; // 2151878760 +constexpr int ORBIS_HTTP_ERROR_TOO_LARGE_RESPONSE_HEADER = 0x80431073; // 2151878771 +constexpr int ORBIS_HTTP_ERROR_UNKNOWN = 0x80431081; // 2151878785 +constexpr int ORBIS_HTTP_ERROR_UNKNOWN_AUTH_TYPE = 0x80431069; // 2151878761 +constexpr int ORBIS_HTTP_ERROR_UNKNOWN_METHOD = 0x8043106b; // 2151878763 +constexpr int ORBIS_HTTP_ERROR_UNKNOWN_SCHEME = 0x80431061; // 2151878753 +constexpr int ORBIS_HTTPS_ERROR_CERT = 0x80435060; // 2151895136 +constexpr int ORBIS_HTTPS_ERROR_HANDSHAKE = 0x80435061; // 2151895137 +constexpr int ORBIS_HTTPS_ERROR_INTERNAL = 0x80435063; // 2151895139 +constexpr int ORBIS_HTTPS_ERROR_IO = 0x80435062; // 2151895138 +constexpr int ORBIS_HTTPS_ERROR_PROHIBITED = 0x8043506b; // 2151895147 +constexpr int ORBIS_HTTPS_ERROR_PROXY = 0x80435064; // 2151895140 + +// ABSTRACTSTORAGE +constexpr int ORBIS_ABSTRACTSTORAGE_ERROR_ALREADY = 0x809e0003; // 2157838339 +constexpr int ORBIS_ABSTRACTSTORAGE_ERROR_GET_ACCESSTOKEN = 0x809e0201; // 2157838849 +constexpr int ORBIS_ABSTRACTSTORAGE_ERROR_HTTP = 0x809e0202; // 2157838850 +constexpr int ORBIS_ABSTRACTSTORAGE_ERROR_INVALID_PARAM = 0x809e0203; // 2157838851 +constexpr int ORBIS_ABSTRACTSTORAGE_ERROR_NG = 0x809e0001; // 2157838337 +constexpr int ORBIS_ABSTRACTSTORAGE_ERROR_NO_IMPL = 0x809e0002; // 2157838338 +constexpr int ORBIS_ABSTRACTSTORAGE_ERROR_NOMEM = 0x809e0006; // 2157838342 +constexpr int ORBIS_ABSTRACTSTORAGE_ERROR_NOSUPPORT = 0x809e0005; // 2157838341 +constexpr int ORBIS_ABSTRACTSTORAGE_ERROR_NOTFOUND = 0x809e0101; // 2157838593 +constexpr int ORBIS_ABSTRACTSTORAGE_ERROR_SERVICE = 0x809e0007; // 2157838343 +constexpr int ORBIS_ABSTRACTSTORAGE_ERROR_UNREGIST = 0x809e0004; // 2157838340 + +// AUTO_MOUNTER +constexpr int ORBIS_AUTO_MOUNTER_ERROR_BUSY = 0x80f40003; // 2163474435 +constexpr int ORBIS_AUTO_MOUNTER_ERROR_INVAL = 0x80f40002; // 2163474434 +constexpr int ORBIS_AUTO_MOUNTER_ERROR_IO = 0x80f40006; // 2163474438 +constexpr int ORBIS_AUTO_MOUNTER_ERROR_NODEV = 0x80f40007; // 2163474439 +constexpr int ORBIS_AUTO_MOUNTER_ERROR_NOENT = 0x80f40004; // 2163474436 +constexpr int ORBIS_AUTO_MOUNTER_ERROR_NOMEM = 0x80f40001; // 2163474433 +constexpr int ORBIS_AUTO_MOUNTER_ERROR_NOTSUP = 0x80f40005; // 2163474437 +constexpr int ORBIS_AUTO_MOUNTER_ERROR_SRCH = 0x80f40008; // 2163474440 + +// BGFT +constexpr int ORBIS_BGFT_ERROR_ABSSTORAGE_UNINTENDED_OBJECT_TYPE = 0x80990080; // 2157510784 +constexpr int ORBIS_BGFT_ERROR_ALREADY_INITIALIZED = 0x80990001; // 2157510657 +constexpr int ORBIS_BGFT_ERROR_API_NOT_PERMITTED = 0x80990007; // 2157510663 +constexpr int ORBIS_BGFT_ERROR_BAD_PFS_BITMAP_FILE_MAGIC = 0x8099005a; // 2157510746 +constexpr int ORBIS_BGFT_ERROR_BAD_PFS_BITMAP_FILE_VERSION = 0x8099005b; // 2157510747 +constexpr int ORBIS_BGFT_ERROR_BITMAP_BACKUP_FILE_FAILED_TO_CREATE = 0x8099005c; // 2157510748 +constexpr int ORBIS_BGFT_ERROR_BITMAP_BACKUP_FILE_FAILED_TO_READ = 0x8099005d; // 2157510749 +constexpr int ORBIS_BGFT_ERROR_BITMAP_CORRUPTED = 0x80990057; // 2157510743 +constexpr int ORBIS_BGFT_ERROR_BROKEN_PACKET = 0x80990005; // 2157510661 +constexpr int ORBIS_BGFT_ERROR_CHUNK_COUNT_IS_ZERO = 0x8099005e; // 2157510750 +constexpr int ORBIS_BGFT_ERROR_CONTENTID_UNMATCH = 0x80990038; // 2157510712 +constexpr int ORBIS_BGFT_ERROR_CONTENTTYPE_UNMATCH = 0x8099003d; // 2157510717 +constexpr int ORBIS_BGFT_ERROR_DEVICE_NOSPC = 0x80990039; // 2157510713 +constexpr int ORBIS_BGFT_ERROR_FAILED_TO_RENAME_PATCH_FILE = 0x8099005f; // 2157510751 +constexpr int ORBIS_BGFT_ERROR_FATAL = 0x80990050; // 2157510736 +constexpr int ORBIS_BGFT_ERROR_FILE_BROKEN = 0x80990053; // 2157510739 +constexpr int ORBIS_BGFT_ERROR_FILE_OFFSET_TOO_LARGE = 0x8099006e; // 2157510766 +constexpr int ORBIS_BGFT_ERROR_FILE_READ_IO = 0x8099003a; // 2157510714 +constexpr int ORBIS_BGFT_ERROR_FILE_SEEK = 0x80990051; // 2157510737 +constexpr int ORBIS_BGFT_ERROR_FILE_WRITE_IO = 0x80990054; // 2157510740 +constexpr int ORBIS_BGFT_ERROR_HEAP_NOMEM = 0x80990011; // 2157510673 +constexpr int ORBIS_BGFT_ERROR_HTTP_CONTENT_LENGTH = 0x80990028; // 2157510696 +constexpr int ORBIS_BGFT_ERROR_HTTP_FILE_NAME = 0x80990035; // 2157510709 +constexpr int ORBIS_BGFT_ERROR_HTTP_MIME_UNMATCH = 0x80990032; // 2157510706 +constexpr int ORBIS_BGFT_ERROR_HTTP_NOT_CONNECTED = 0x80990045; // 2157510725 +constexpr int ORBIS_BGFT_ERROR_HTTP_RANGE = 0x8099003c; // 2157510716 +constexpr int ORBIS_BGFT_ERROR_HTTP_RECV_IO = 0x8099002c; // 2157510700 +constexpr int ORBIS_BGFT_ERROR_HTTP_RESPONSE_ERROR = 0x8099002f; // 2157510703 +constexpr int ORBIS_BGFT_ERROR_HTTP_SSL_VERIFY = 0x80990036; // 2157510710 +constexpr int ORBIS_BGFT_ERROR_HTTP_STATUS = 0x80990027; // 2157510695 +constexpr int ORBIS_BGFT_ERROR_HTTP_UNACCEPTABLE_EXT = 0x80990033; // 2157510707 +constexpr int ORBIS_BGFT_ERROR_INCONSISTENT_IMAGE_NUM = 0x80990060; // 2157510752 +constexpr int ORBIS_BGFT_ERROR_INCONSISTENT_PACKAGE_FILE_SIZE = 0x80990061; // 2157510753 +constexpr int ORBIS_BGFT_ERROR_INTERNAL = 0x80990008; // 2157510664 +constexpr int ORBIS_BGFT_ERROR_INVALID_APIID = 0x80990009; // 2157510665 +constexpr int ORBIS_BGFT_ERROR_INVALID_ARGUMENT = 0x80990004; // 2157510660 +constexpr int ORBIS_BGFT_ERROR_INVALID_BLOCK_NUMBER = 0x80990070; // 2157510768 +constexpr int ORBIS_BGFT_ERROR_INVALID_CONTENTID = 0x80990055; // 2157510741 +constexpr int ORBIS_BGFT_ERROR_INVALID_METADATA_PARAM = 0x80990058; // 2157510744 +constexpr int ORBIS_BGFT_ERROR_INVALID_PACKAGE_DIGEST_HEX_CHECK = 0x80990062; // 2157510754 +constexpr int ORBIS_BGFT_ERROR_INVALID_PACKAGE_DIGEST_SIZE_OF_PACKAGE_MANIFEST = + 0x80990063; // 2157510755 +constexpr int ORBIS_BGFT_ERROR_INVALID_PLAYGO_64KIB_ALIGNMENT = 0x80990072; // 2157510770 +constexpr int ORBIS_BGFT_ERROR_INVALID_PLAYGO_CHUNK_DAT = 0x8099007e; // 2157510782 +constexpr int ORBIS_BGFT_ERROR_KAMAJI_BEFORE_DOWNLOADABLE_DATE = 0x8099007c; // 2157510780 +constexpr int ORBIS_BGFT_ERROR_KAMAJI_DOWNLOADABLE_DATE_EMPTY = 0x8099007d; // 2157510781 +constexpr int ORBIS_BGFT_ERROR_KAMAJI_NO_ENTITLEMENT = 0x8099007b; // 2157510779 +constexpr int ORBIS_BGFT_ERROR_KAMAJI_NO_METADATA = 0x80990075; // 2157510773 +constexpr int ORBIS_BGFT_ERROR_METADATA_FILE_READ_IO = 0x8099003b; // 2157510715 +constexpr int ORBIS_BGFT_ERROR_MISMATCH_CHUNK_COUNT_BETWEEN_APP_AND_PATCH = + 0x80990064; // 2157510756 +constexpr int ORBIS_BGFT_ERROR_MISMATCH_PACKAGE_DIGEST = 0x80990065; // 2157510757 +constexpr int ORBIS_BGFT_ERROR_MISMATCHED_PACKAGE_SIZE = 0x80990078; // 2157510776 +constexpr int ORBIS_BGFT_ERROR_MISSING_APP_PLAYGO_CHUNK_DAT = 0x80990066; // 2157510758 +constexpr int ORBIS_BGFT_ERROR_MISSING_PATCH_PLAYGO_APP_CHUNK_DAT = 0x80990067; // 2157510759 +constexpr int ORBIS_BGFT_ERROR_MISSING_PATCH_PLAYGO_PATCH_CHUNK_DAT = 0x80990068; // 2157510760 +constexpr int ORBIS_BGFT_ERROR_MISSING_PLAYGO_CHUNK_SHA = 0x80990071; // 2157510769 +constexpr int ORBIS_BGFT_ERROR_NO_SHA_VALUE = 0x8099006f; // 2157510767 +constexpr int ORBIS_BGFT_ERROR_NOT_FOUND_CONTENT_TO_UPLOAD = 0x80990059; // 2157510745 +constexpr int ORBIS_BGFT_ERROR_NOT_INITIALIZED = 0x80990002; // 2157510658 +constexpr int ORBIS_BGFT_ERROR_NOT_READY = 0x80990052; // 2157510738 +constexpr int ORBIS_BGFT_ERROR_NOT_SUPPORTED = 0x80990006; // 2157510662 +constexpr int ORBIS_BGFT_ERROR_OUT_OF_MEMORY = 0x80990003; // 2157510659 +constexpr int ORBIS_BGFT_ERROR_PACKAGE_FILE_IS_NOT_FOUND = 0x8099006a; // 2157510762 +constexpr int ORBIS_BGFT_ERROR_PACKAGE_FILE_SIZE_IS_ZERO = 0x80990069; // 2157510761 +constexpr int ORBIS_BGFT_ERROR_PARAM_BADFILE = 0x80990022; // 2157510690 +constexpr int ORBIS_BGFT_ERROR_PARAM_BADSIZE = 0x80990024; // 2157510692 +constexpr int ORBIS_BGFT_ERROR_PARAM_IO = 0x80990023; // 2157510691 +constexpr int ORBIS_BGFT_ERROR_PARAM_NOENT = 0x80990020; // 2157510688 +constexpr int ORBIS_BGFT_ERROR_PARAM_NOSPC = 0x80990021; // 2157510689 +constexpr int ORBIS_BGFT_ERROR_PARAM_URI_NOENT = 0x8099001b; // 2157510683 +constexpr int ORBIS_BGFT_ERROR_PFS_BITMAP_CORRUPTED = 0x80990056; // 2157510742 +constexpr int ORBIS_BGFT_ERROR_PLAYGO_SHA_DIGEST = 0x80990077; // 2157510775 +constexpr int ORBIS_BGFT_ERROR_PLAYGO_SHA_READ_ERROR = 0x80990074; // 2157510772 +constexpr int ORBIS_BGFT_ERROR_SHA_RESOLVER_INVALID_4BYTES_ALIGNMENT = 0x80990073; // 2157510771 +constexpr int ORBIS_BGFT_ERROR_TASK_DUPLICATED = 0x80990015; // 2157510677 +constexpr int ORBIS_BGFT_ERROR_TASK_ENTRY_NOSPC = 0x80990018; // 2157510680 +constexpr int ORBIS_BGFT_ERROR_TASK_ID_INVALID_FORMAT = 0x80990014; // 2157510676 +constexpr int ORBIS_BGFT_ERROR_TASK_NOENT = 0x80990019; // 2157510681 +constexpr int ORBIS_BGFT_ERROR_TIME_IS_PAST = 0x80990076; // 2157510774 +constexpr int ORBIS_BGFT_ERROR_UNEXPECTED_EOF = 0x8099006b; // 2157510763 +constexpr int ORBIS_BGFT_ERROR_UNSUPPORTED_DELTA_PACKAGE = 0x8099007a; // 2157510778 +constexpr int ORBIS_BGFT_ERROR_UNSUPPORTED_PACKAGE = 0x80990079; // 2157510777 +constexpr int ORBIS_BGFT_ERROR_UNSUPPORTED_PLAYGO_CHUNK_DAT = 0x8099007f; // 2157510783 +constexpr int ORBIS_BGFT_ERROR_USER_CANCELLED = 0x8099000b; // 2157510667 +constexpr int ORBIS_BGFT_ERROR_VERIFICATION_ERROR_BITMAP_FILE_DIGEST = 0x8099006c; // 2157510764 +constexpr int ORBIS_BGFT_ERROR_VERIFICATION_ERROR_PFS_BITMAP_FILE_DIGEST = 0x8099006d; // 2157510765 +constexpr int ORBIS_BGFT_ERROR_XML_FORMAT_ERROR = 0x8099000a; // 2157510666 + +// BXCE +constexpr int ORBIS_BXCE_ERROR_DOM_EMPTY_ELEMENT_ERROR = 0x8085120a; // 2156204554 +constexpr int ORBIS_BXCE_ERROR_DOM_ENITITY_ERROR = 0x8085120e; // 2156204558 +constexpr int ORBIS_BXCE_ERROR_DOM_EXCEED_LIMIT = 0x80851210; // 2156204560 +constexpr int ORBIS_BXCE_ERROR_DOM_HIERARCHY_REQUEST_ERROR = 0x80851200; // 2156204544 +constexpr int ORBIS_BXCE_ERROR_DOM_INDEX_SIZE_ERROR = 0x80851201; // 2156204545 +constexpr int ORBIS_BXCE_ERROR_DOM_INVALID_ACCESS_ERROR = 0x80851202; // 2156204546 +constexpr int ORBIS_BXCE_ERROR_DOM_INVALID_STATE_ERROR = 0x80851203; // 2156204547 +constexpr int ORBIS_BXCE_ERROR_DOM_MAX_NUM_OF_ATTR_ERROR = 0x8085120b; // 2156204555 +constexpr int ORBIS_BXCE_ERROR_DOM_MAX_UNIQUE_ATTR_ERROR = 0x8085120d; // 2156204557 +constexpr int ORBIS_BXCE_ERROR_DOM_MAX_UNIQUE_ELEMENT_ERROR = 0x8085120c; // 2156204556 +constexpr int ORBIS_BXCE_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERROR = 0x80851204; // 2156204548 +constexpr int ORBIS_BXCE_ERROR_DOM_NO_REFERENCE_GIVEN = 0x80851207; // 2156204551 +constexpr int ORBIS_BXCE_ERROR_DOM_NOT_ALLOWED_NODE_TYPE = 0x8085120f; // 2156204559 +constexpr int ORBIS_BXCE_ERROR_DOM_NOT_FOUND_ERROR = 0x80851205; // 2156204549 +constexpr int ORBIS_BXCE_ERROR_DOM_NOT_SUPPORTED_ERROR = 0x80851206; // 2156204550 +constexpr int ORBIS_BXCE_ERROR_DOM_READ_ONLY_ERROR = 0x80851209; // 2156204553 +constexpr int ORBIS_BXCE_ERROR_DOM_WRONG_DOCUMENT_ERROR = 0x80851208; // 2156204552 +constexpr int ORBIS_BXCE_ERROR_INIT_FAILED = 0x80851006; // 2156204038 +constexpr int ORBIS_BXCE_ERROR_INTERNAL_ERROR = 0x80851005; // 2156204037 +constexpr int ORBIS_BXCE_ERROR_INVALID_ARGUMENT = 0x80851002; // 2156204034 +constexpr int ORBIS_BXCE_ERROR_INVALID_BX = 0x80851007; // 2156204039 +constexpr int ORBIS_BXCE_ERROR_MEM_RETRY = 0x80851700; // 2156205824 +constexpr int ORBIS_BXCE_ERROR_MX_API_TIMEOUT = 0x80851410; // 2156205072 +constexpr int ORBIS_BXCE_ERROR_MX_BAD_XML = 0x80851419; // 2156205081 +constexpr int ORBIS_BXCE_ERROR_MX_BUSY = 0x8085141a; // 2156205082 +constexpr int ORBIS_BXCE_ERROR_MX_CANCEL_FAILED = 0x80851412; // 2156205074 +constexpr int ORBIS_BXCE_ERROR_MX_CB_FUNC_NOT_FOUND_ERROR = 0x80851407; // 2156205063 +constexpr int ORBIS_BXCE_ERROR_MX_CONNECTION_CLOSE_ERROR = 0x80851406; // 2156205062 +constexpr int ORBIS_BXCE_ERROR_MX_CONNECTION_ESTABLISH_ERROR = 0x80851404; // 2156205060 +constexpr int ORBIS_BXCE_ERROR_MX_CONNECTION_START_ERROR = 0x80851405; // 2156205061 +constexpr int ORBIS_BXCE_ERROR_MX_DATA_READING_ERROR = 0x8085140a; // 2156205066 +constexpr int ORBIS_BXCE_ERROR_MX_DATA_READING_TIMEOUT = 0x8085140b; // 2156205067 +constexpr int ORBIS_BXCE_ERROR_MX_DATA_WRITING_ERROR = 0x80851408; // 2156205064 +constexpr int ORBIS_BXCE_ERROR_MX_DATA_WRITING_TIMEOUT = 0x80851409; // 2156205065 +constexpr int ORBIS_BXCE_ERROR_MX_ERROR = 0x80851400; // 2156205056 +constexpr int ORBIS_BXCE_ERROR_MX_HTTP_CONNECT_FATAL_ERROR = 0x80851413; // 2156205075 +constexpr int ORBIS_BXCE_ERROR_MX_HTTP_DATA_REMAINING = 0x80851415; // 2156205077 +constexpr int ORBIS_BXCE_ERROR_MX_HTTP_SOCKET_OPEN_ERROR = 0x80851414; // 2156205076 +constexpr int ORBIS_BXCE_ERROR_MX_HTTPS_AUTHENTICATION_ERROR = 0x80851416; // 2156205078 +constexpr int ORBIS_BXCE_ERROR_MX_HTTPS_CERTIFICATION_NOT_FOUND = 0x80851417; // 2156205079 +constexpr int ORBIS_BXCE_ERROR_MX_INVALID_MESSAGE = 0x8085140f; // 2156205071 +constexpr int ORBIS_BXCE_ERROR_MX_INVALID_USAGE = 0x80851401; // 2156205057 +constexpr int ORBIS_BXCE_ERROR_MX_MULTIPLE_INIT = 0x80851402; // 2156205058 +constexpr int ORBIS_BXCE_ERROR_MX_NO_SUCH_DESTINATION = 0x80851403; // 2156205059 +constexpr int ORBIS_BXCE_ERROR_MX_REMOTE_SIDE_NOT_RESPOND = 0x80851418; // 2156205080 +constexpr int ORBIS_BXCE_ERROR_MX_REQUEST_CANCELED = 0x80851411; // 2156205073 +constexpr int ORBIS_BXCE_ERROR_MX_SERVER_INTERNAL_ERROR = 0x8085140e; // 2156205070 +constexpr int ORBIS_BXCE_ERROR_MX_SERVER_NOT_ALLOWED_ERROR = 0x8085140d; // 2156205069 +constexpr int ORBIS_BXCE_ERROR_MX_SERVER_REJECT_ERROR = 0x8085140c; // 2156205068 +constexpr int ORBIS_BXCE_ERROR_MX_THREAD_CREATE_ERROR = 0x8085141b; // 2156205083 +constexpr int ORBIS_BXCE_ERROR_NO_MEMORY = 0x80851000; // 2156204032 +constexpr int ORBIS_BXCE_ERROR_NOT_INITIALIZED = 0x80851001; // 2156204033 +constexpr int ORBIS_BXCE_ERROR_NOT_SUPPORTED = 0x80851004; // 2156204036 +constexpr int ORBIS_BXCE_ERROR_PARSER_BUSY = 0x80851008; // 2156204040 +constexpr int ORBIS_BXCE_ERROR_UNKOWN_ERROR = 0x80851003; // 2156204035 +constexpr int ORBIS_BXCE_ERROR_UTILS_INVALID_ASCII_DIGIT = 0x80851502; // 2156205314 +constexpr int ORBIS_BXCE_ERROR_UTILS_INVALID_HEX_VALUE = 0x80851503; // 2156205315 +constexpr int ORBIS_BXCE_ERROR_UTILS_INVALID_XML_CHAR = 0x80851500; // 2156205312 +constexpr int ORBIS_BXCE_ERROR_UTILS_INVALID_XML_NAME = 0x80851501; // 2156205313 +constexpr int ORBIS_BXCE_ERROR_UTILS_SERIALIZER_BUFFER_TOO_SMALL = 0x80851600; // 2156205568 +constexpr int ORBIS_BXCE_ERROR_UTILS_SERIALIZER_CONTINUE = 0x80851601; // 2156205569 +constexpr int ORBIS_BXCE_ERROR_UTILS_SERIALIZER_FINA = 0x80851602; // 2156205570 +constexpr int ORBIS_BXCE_ERROR_XML_DOCUMENT_ELEMENT_NOT_FOUND = 0x80851027; // 2156204071 +constexpr int ORBIS_BXCE_ERROR_XML_DUPLICATE_ATTRIBUTE_NAME = 0x8085102a; // 2156204074 +constexpr int ORBIS_BXCE_ERROR_XML_END_OF_CD_SECT_NOT_FOUND = 0x80851017; // 2156204055 +constexpr int ORBIS_BXCE_ERROR_XML_END_OF_COMMENT_NOT_FOUND = 0x80851016; // 2156204054 +constexpr int ORBIS_BXCE_ERROR_XML_END_OF_DECL_NOT_FOUND = 0x80851028; // 2156204072 +constexpr int ORBIS_BXCE_ERROR_XML_END_OF_DTD_NOT_FOUND = 0x80851029; // 2156204073 +constexpr int ORBIS_BXCE_ERROR_XML_END_TAG_MISMATCH = 0x8085100d; // 2156204045 +constexpr int ORBIS_BXCE_ERROR_XML_ERROR = 0x80851009; // 2156204041 +constexpr int ORBIS_BXCE_ERROR_XML_EXPECTED_ATTRIBUTE_NAME = 0x8085101c; // 2156204060 +constexpr int ORBIS_BXCE_ERROR_XML_EXPECTED_ATTRIBUTE_VALUE = 0x8085101e; // 2156204062 +constexpr int ORBIS_BXCE_ERROR_XML_EXPECTED_CLOSING_ANGLE_BRACKET = 0x80851013; // 2156204051 +constexpr int ORBIS_BXCE_ERROR_XML_EXPECTED_CLOSING_SQUARE_BRACKET = 0x80851012; // 2156204050 +constexpr int ORBIS_BXCE_ERROR_XML_EXPECTED_DOCUMENT_ELEMENT = 0x80851021; // 2156204065 +constexpr int ORBIS_BXCE_ERROR_XML_EXPECTED_ELEMENT_NAME = 0x8085101b; // 2156204059 +constexpr int ORBIS_BXCE_ERROR_XML_EXPECTED_EQUALITY_OPERATOR = 0x80851014; // 2156204052 +constexpr int ORBIS_BXCE_ERROR_XML_EXPECTED_POSITIVE_INTEGER = 0x8085101d; // 2156204061 +constexpr int ORBIS_BXCE_ERROR_XML_EXPECTED_QUOTE = 0x80851019; // 2156204057 +constexpr int ORBIS_BXCE_ERROR_XML_EXPECTED_SEMI_COLON = 0x80851015; // 2156204053 +constexpr int ORBIS_BXCE_ERROR_XML_EXPECTED_SPACE = 0x8085101a; // 2156204058 +constexpr int ORBIS_BXCE_ERROR_XML_INVALID_CONTEXT = 0x80851103; // 2156204291 +constexpr int ORBIS_BXCE_ERROR_XML_INVALID_CONTEXT_ID = 0x80851022; // 2156204066 +constexpr int ORBIS_BXCE_ERROR_XML_INVALID_DOCUMENT_ELEMENT = 0x80851026; // 2156204070 +constexpr int ORBIS_BXCE_ERROR_XML_INVALID_PI = 0x80851025; // 2156204069 +constexpr int ORBIS_BXCE_ERROR_XML_NULL_HANDLER = 0x80851024; // 2156204068 +constexpr int ORBIS_BXCE_ERROR_XML_PARSE_ABORTED = 0x80851101; // 2156204289 +constexpr int ORBIS_BXCE_ERROR_XML_PARSE_IN_PROGRESS = 0x80851100; // 2156204288 +constexpr int ORBIS_BXCE_ERROR_XML_PARSE_SUSPENDED = 0x80851102; // 2156204290 +constexpr int ORBIS_BXCE_ERROR_XML_PROBLEMS_OPENING_STREAM = 0x80851023; // 2156204067 +constexpr int ORBIS_BXCE_ERROR_XML_SYNTAX_ERROR = 0x8085100b; // 2156204043 +constexpr int ORBIS_BXCE_ERROR_XML_TAG_NOT_CLOSED = 0x8085100c; // 2156204044 +constexpr int ORBIS_BXCE_ERROR_XML_UNEXPECTED_CHAR = 0x80851011; // 2156204049 +constexpr int ORBIS_BXCE_ERROR_XML_UNEXPECTED_CHARACTER = 0x8085101f; // 2156204063 +constexpr int ORBIS_BXCE_ERROR_XML_UNEXPECTED_END_TAG = 0x8085100e; // 2156204046 +constexpr int ORBIS_BXCE_ERROR_XML_UNEXPECTED_SPACE = 0x80851018; // 2156204056 +constexpr int ORBIS_BXCE_ERROR_XML_UNEXPECTED_TOKEN = 0x80851010; // 2156204048 +constexpr int ORBIS_BXCE_ERROR_XML_UNEXPEXTED_EOF = 0x8085100a; // 2156204042 +constexpr int ORBIS_BXCE_ERROR_XML_UNKNOWN_ENCODING = 0x80851020; // 2156204064 +constexpr int ORBIS_BXCE_ERROR_XML_UNKNOWN_TOKEN = 0x8085100f; // 2156204047 +constexpr int ORBIS_BXCE_ERROR_XPATH_EXPRESSION_ERROR = 0x80851300; // 2156204800 + +// CLOUD_CLIENT +constexpr int ORBIS_CLOUD_CLIENT_ERROR_ALLOCATE_SLOT_FAILED = 0x811a0005; // 2165964805 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_AUTHORIZATION_FAILED = 0x811a0004; // 2165964804 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_BANDWIDTH_TEST_FAILED = 0x811a0011; // 2165964817 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_FAILED_TO_CONNECT_TO_STREAMING_SERVER = + 0x811a0007; // 2165964807 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_FSM_ALREADY_EXISTS = 0x811a0009; // 2165964809 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_GENERIC_INSTANCE_FAILED_START = 0x811a0018; // 2165964824 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_GENERIC_REMOTE_START_PROCESS_FAILED = + 0x811a0019; // 2165964825 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_GENERIC_START_SLOT_FAILED = 0x811a0015; // 2165964821 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_GENERIC_START_STREAMING_SESSION_CRITICAL = + 0x811a0017; // 2165964823 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_GENERIC_START_STREAMING_SESSION_FAILED = + 0x811a0016; // 2165964822 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_GENERIC_STATUS_CHECK_FAILED = 0x811a0014; // 2165964820 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_GENERIC_UNKNOWN_TIMEOUT_REASON = 0x811a0013; // 2165964819 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_GET_DATA_CENTERS_FAILED = 0x811a000d; // 2165964813 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_GET_LOCK_FAILED = 0x811a000c; // 2165964812 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_HANDSHAKE_FAILED = 0x811a0008; // 2165964808 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_HTTP_NOT_INITIALIZED = 0x811a000b; // 2165964811 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_INTERNAL = 0x811a0001; // 2165964801 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_INVALID_SEQUENCE = 0x811a0003; // 2165964803 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_INVALID_SESSION = 0x811a0002; // 2165964802 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_MISSING_REQUIRED_LAUNCH_PARAM = 0x811a000a; // 2165964810 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_MTU_TEST_FAILED = 0x811a0010; // 2165964816 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_RTT_TEST_FAILED = 0x811a000e; // 2165964814 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_SELECT_DATA_CENTER_FAILED = 0x811a000f; // 2165964815 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_STREAM_TEST_CHECK_FAILED = 0x811a0012; // 2165964818 +constexpr int ORBIS_CLOUD_CLIENT_ERROR_UNABLE_TO_CONNECT_TO_CLOUD = 0x811a0006; // 2165964806 + +// COMMON_DIALOG +constexpr int ORBIS_COMMON_DIALOG_ERROR_ALREADY_CLOSE = 0x80b8000c; // 2159542284 +constexpr int ORBIS_COMMON_DIALOG_ERROR_ALREADY_INITIALIZED = 0x80b80004; // 2159542276 +constexpr int ORBIS_COMMON_DIALOG_ERROR_ALREADY_SYSTEM_INITIALIZED = 0x80b80002; // 2159542274 +constexpr int ORBIS_COMMON_DIALOG_ERROR_ARG_NULL = 0x80b8000d; // 2159542285 +constexpr int ORBIS_COMMON_DIALOG_ERROR_BUSY = 0x80b80008; // 2159542280 +constexpr int ORBIS_COMMON_DIALOG_ERROR_INVALID_STATE = 0x80b80006; // 2159542278 +constexpr int ORBIS_COMMON_DIALOG_ERROR_NOT_FINISHED = 0x80b80005; // 2159542277 +constexpr int ORBIS_COMMON_DIALOG_ERROR_NOT_INITIALIZED = 0x80b80003; // 2159542275 +constexpr int ORBIS_COMMON_DIALOG_ERROR_NOT_RUNNING = 0x80b8000b; // 2159542283 +constexpr int ORBIS_COMMON_DIALOG_ERROR_NOT_SUPPORTED = 0x80b8000f; // 2159542287 +constexpr int ORBIS_COMMON_DIALOG_ERROR_NOT_SYSTEM_INITIALIZED = 0x80b80001; // 2159542273 +constexpr int ORBIS_COMMON_DIALOG_ERROR_OUT_OF_MEMORY = 0x80b80009; // 2159542281 +constexpr int ORBIS_COMMON_DIALOG_ERROR_PARAM_INVALID = 0x80b8000a; // 2159542282 +constexpr int ORBIS_COMMON_DIALOG_ERROR_RESULT_NONE = 0x80b80007; // 2159542279 +constexpr int ORBIS_COMMON_DIALOG_ERROR_UNEXPECTED_FATAL = 0x80b8000e; // 2159542286 +constexpr int ORBIS_COMMON_DIALOG_SERVER_ERROR_ALREADY_FINISHED = 0x80c60001; // 2160459777 +constexpr int ORBIS_COMMON_DIALOG_SERVER_ERROR_NOT_SETDATA = 0x80c60000; // 2160459776 + +// COMP_APP_PROXY_IPMI +constexpr int ORBIS_COMP_APP_PROXY_IPMI_ERROR_ALREADY_CONNECTED = 0x80ab000c; // 2158690316 +constexpr int ORBIS_COMP_APP_PROXY_IPMI_ERROR_CAN_NOT_CONNECT = 0x80ab000e; // 2158690318 +constexpr int ORBIS_COMP_APP_PROXY_IPMI_ERROR_CAN_NOT_DISCONNECT = 0x80ab000f; // 2158690319 +constexpr int ORBIS_COMP_APP_PROXY_IPMI_ERROR_DEVICE_NOT_CONNECTED = 0x80ab0005; // 2158690309 +constexpr int ORBIS_COMP_APP_PROXY_IPMI_ERROR_DEVICE_NOT_FOUND = 0x80ab0004; // 2158690308 +constexpr int ORBIS_COMP_APP_PROXY_IPMI_ERROR_FATAL = 0x80ab0002; // 2158690306 +constexpr int ORBIS_COMP_APP_PROXY_IPMI_ERROR_GENERIC = 0x80ab0001; // 2158690305 +constexpr int ORBIS_COMP_APP_PROXY_IPMI_ERROR_HANDLE_DISABLED = 0x80ab0008; // 2158690312 +constexpr int ORBIS_COMP_APP_PROXY_IPMI_ERROR_HANDLE_ENABLED = 0x80ab0007; // 2158690311 +constexpr int ORBIS_COMP_APP_PROXY_IPMI_ERROR_HANDLE_NOT_FOUND = 0x80ab0009; // 2158690313 +constexpr int ORBIS_COMP_APP_PROXY_IPMI_ERROR_INVALID_PARAM = 0x80ab0003; // 2158690307 +constexpr int ORBIS_COMP_APP_PROXY_IPMI_ERROR_INVALID_PORT = 0x80ab0006; // 2158690310 +constexpr int ORBIS_COMP_APP_PROXY_IPMI_ERROR_NOT_INITIALIZED = 0x80ab000a; // 2158690314 +constexpr int ORBIS_COMP_APP_PROXY_IPMI_ERROR_UNCONNECTED = 0x80ab000d; // 2158690317 +constexpr int ORBIS_COMP_APP_PROXY_IPMI_ERROR_UNMATCH_FUNCTION_TYPE = 0x80ab000b; // 2158690315 + +// COMPANION +constexpr int ORBIS_COMPANION_HTTPD_ERROR_ALREADY_INITIALIZED = 0x80e40007; // 2162425863 +constexpr int ORBIS_COMPANION_HTTPD_ERROR_ALREADY_REGISTERED = 0x80e4000c; // 2162425868 +constexpr int ORBIS_COMPANION_HTTPD_ERROR_ALREADY_STARTED = 0x80e4000a; // 2162425866 +constexpr int ORBIS_COMPANION_HTTPD_ERROR_FATAL = 0x80e40002; // 2162425858 +constexpr int ORBIS_COMPANION_HTTPD_ERROR_INVALID_OPERATION = 0x80e40005; // 2162425861 +constexpr int ORBIS_COMPANION_HTTPD_ERROR_INVALID_PARAM = 0x80e40004; // 2162425860 +constexpr int ORBIS_COMPANION_HTTPD_ERROR_NO_EVENT = 0x80e40008; // 2162425864 +constexpr int ORBIS_COMPANION_HTTPD_ERROR_NOMEM = 0x80e40003; // 2162425859 +constexpr int ORBIS_COMPANION_HTTPD_ERROR_NOT_GENERATE_RESPONSE = 0x80e40009; // 2162425865 +constexpr int ORBIS_COMPANION_HTTPD_ERROR_NOT_INITIALIZED = 0x80e40006; // 2162425862 +constexpr int ORBIS_COMPANION_HTTPD_ERROR_NOT_STARTED = 0x80e4000b; // 2162425867 +constexpr int ORBIS_COMPANION_HTTPD_ERROR_UNKNOWN = 0x80e40001; // 2162425857 +constexpr int ORBIS_COMPANION_UTIL_ERROR_ALREADY_INITIALIZED = 0x80ad0007; // 2158821383 +constexpr int ORBIS_COMPANION_UTIL_ERROR_FATAL = 0x80ad0002; // 2158821378 +constexpr int ORBIS_COMPANION_UTIL_ERROR_INVALID_OPERATION = 0x80ad0005; // 2158821381 +constexpr int ORBIS_COMPANION_UTIL_ERROR_INVALID_PARAM = 0x80ad0004; // 2158821380 +constexpr int ORBIS_COMPANION_UTIL_ERROR_NO_EVENT = 0x80ad0008; // 2158821384 +constexpr int ORBIS_COMPANION_UTIL_ERROR_NOMEM = 0x80ad0003; // 2158821379 +constexpr int ORBIS_COMPANION_UTIL_ERROR_NOT_INITIALIZED = 0x80ad0006; // 2158821382 +constexpr int ORBIS_COMPANION_UTIL_ERROR_UNKNOWN = 0x80ad0001; // 2158821377 + +// CONTENT +constexpr int ORBIS_CONTENT_EXPORT_ERROR_BUSY = 0x809d3003; // 2157785091 +constexpr int ORBIS_CONTENT_EXPORT_ERROR_CANCELED = 0x809d3001; // 2157785089 +constexpr int ORBIS_CONTENT_EXPORT_ERROR_DISKFULL = 0x809d3017; // 2157785111 +constexpr int ORBIS_CONTENT_EXPORT_ERROR_EXECUTION_MAX = 0x809d3018; // 2157785112 +constexpr int ORBIS_CONTENT_EXPORT_ERROR_FILE_NOT_FOUND = 0x809d3011; // 2157785105 +constexpr int ORBIS_CONTENT_EXPORT_ERROR_INVALDPARAM = 0x809d3016; // 2157785110 +constexpr int ORBIS_CONTENT_EXPORT_ERROR_LARGE_COMMENT = 0x809d3015; // 2157785109 +constexpr int ORBIS_CONTENT_EXPORT_ERROR_LARGE_TITLE = 0x809d3013; // 2157785107 +constexpr int ORBIS_CONTENT_EXPORT_ERROR_MULTIPLEINIT = 0x809d3005; // 2157785093 +constexpr int ORBIS_CONTENT_EXPORT_ERROR_NOINIT = 0x809d3004; // 2157785092 +constexpr int ORBIS_CONTENT_EXPORT_ERROR_NOMEM = 0x809d3006; // 2157785094 +constexpr int ORBIS_CONTENT_EXPORT_ERROR_NOT_IMPLEMENTED = 0x809d3fff; // 2157789183 +constexpr int ORBIS_CONTENT_EXPORT_ERROR_NOT_SUPPORT_FORMAT_THUNBNAIL = 0x809d3019; // 2157785113 +constexpr int ORBIS_CONTENT_EXPORT_ERROR_NOT_SUPPORTED_FORMAT = 0x809d3012; // 2157785106 +constexpr int ORBIS_CONTENT_EXPORT_ERROR_NOTACCEPT = 0x809d3002; // 2157785090 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_BUSY = 0x809d0015; // 2157772821 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_CANCELED = 0x809d0014; // 2157772820 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_FAILED_CONNECTION = 0x809d000d; // 2157772813 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_FATAL = 0x809d0002; // 2157772802 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_FILE_IO_RESULT = 0x809d0013; // 2157772819 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_INEXIST_OBJECT = 0x809d0006; // 2157772806 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_INVALID_APP = 0x809d0005; // 2157772805 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_INVALID_APP_INFO = 0x809d000c; // 2157772812 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_INVALID_ARGUMENT = 0x809d0001; // 2157772801 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_INVALID_SCHEMA = 0x809d000e; // 2157772814 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_INVALID_SEARCH_INFO = 0x809d000b; // 2157772811 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_INVALID_STORAGE = 0x809d0007; // 2157772807 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_INVALID_USER = 0x809d0004; // 2157772804 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_NO_ITERATOR = 0x809d0010; // 2157772816 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_NO_MEMORY = 0x809d0008; // 2157772808 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_NO_PERMISSION = 0x809d000a; // 2157772810 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_NO_RECORD = 0x809d0009; // 2157772809 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_NOT_IMPLEMENTED = 0x809d000f; // 2157772815 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_NOT_OPERATED = 0x809d0016; // 2157772822 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_NOT_SUPPORT_FORMAT_THUNBNAIL = 0x809d0017; // 2157772823 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_NOT_SUPPORTED = 0x809d0003; // 2157772803 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_OVER_NUM_OF_RESULT = 0x809d0012; // 2157772818 +constexpr int ORBIS_CONTENT_MANAGER_ERROR_UNKNOWN_TABLE = 0x809d0011; // 2157772817 +constexpr int ORBIS_CONTENT_SEARCH_ERROR_ALREADY_INITIALIZED = 0x809d1002; // 2157776898 +constexpr int ORBIS_CONTENT_SEARCH_ERROR_DB_BUSY = 0x809d100c; // 2157776908 +constexpr int ORBIS_CONTENT_SEARCH_ERROR_DB_FATAL = 0x809d100d; // 2157776909 +constexpr int ORBIS_CONTENT_SEARCH_ERROR_INVALID_AGGREGATED_CONDITION = 0x809d1009; // 2157776905 +constexpr int ORBIS_CONTENT_SEARCH_ERROR_INVALID_CONTENTS_FILE_FORMAT = 0x809d1011; // 2157776913 +constexpr int ORBIS_CONTENT_SEARCH_ERROR_INVALID_ORDERBY_CONDITION = 0x809d1008; // 2157776904 +constexpr int ORBIS_CONTENT_SEARCH_ERROR_INVALID_PARAM = 0x809d1003; // 2157776899 +constexpr int ORBIS_CONTENT_SEARCH_ERROR_INVALID_SEARCH_COLUMN = 0x809d1006; // 2157776902 +constexpr int ORBIS_CONTENT_SEARCH_ERROR_INVALID_SEARCH_COLUMN_VALUE_OPERATOR = + 0x809d1007; // 2157776903 +constexpr int ORBIS_CONTENT_SEARCH_ERROR_INVALID_SEARCH_LOGICAL_CONNECTOR = + 0x809d1005; // 2157776901 +constexpr int ORBIS_CONTENT_SEARCH_ERROR_LIMIT_TOO_BIG = 0x809d100a; // 2157776906 +constexpr int ORBIS_CONTENT_SEARCH_ERROR_NOMEM = 0x809d1004; // 2157776900 +constexpr int ORBIS_CONTENT_SEARCH_ERROR_NOT_EXIST_FIELD = 0x809d1010; // 2157776912 +constexpr int ORBIS_CONTENT_SEARCH_ERROR_NOT_EXIST_FILE = 0x809d1012; // 2157776914 +constexpr int ORBIS_CONTENT_SEARCH_ERROR_NOT_INITIALIZED = 0x809d1001; // 2157776897 +constexpr int ORBIS_CONTENT_SEARCH_ERROR_NOT_SUPPORT_MIME_TYPE = 0x809d100f; // 2157776911 +constexpr int ORBIS_CONTENT_SEARCH_ERROR_SEARCH_PARAMETER_TOO_MANY = 0x809d100b; // 2157776907 +constexpr int ORBIS_CONTENT_SEARCH_ERROR_TOO_MANY_METADATA = 0x809d100e; // 2157776910 + +// DBRECOVERY +constexpr int ORBIS_DBRECOVERY_ERROR_APP_BROWSE_ACCESSOR_APP_DB_CANTOPEN = 0x809c1111; // 2157711633 +constexpr int ORBIS_DBRECOVERY_ERROR_APP_BROWSE_ACCESSOR_APP_DB_CORRUPT = 0x809c1110; // 2157711632 +constexpr int ORBIS_DBRECOVERY_ERROR_APP_BROWSE_ACCESSOR_APP_DB_EMPTY = 0x809c1112; // 2157711634 +constexpr int ORBIS_DBRECOVERY_ERROR_APP_BROWSE_ACCESSOR_APP_DB_ERROR = 0x809c110e; // 2157711630 +constexpr int ORBIS_DBRECOVERY_ERROR_APP_BROWSE_ACCESSOR_APP_DB_FORMAT = 0x809c1113; // 2157711635 +constexpr int ORBIS_DBRECOVERY_ERROR_APP_BROWSE_ACCESSOR_APP_DB_IOERR = 0x809c110f; // 2157711631 +constexpr int ORBIS_DBRECOVERY_ERROR_APP_BROWSE_ACCESSOR_APP_DB_NOTADB = 0x809c1114; // 2157711636 +constexpr int ORBIS_DBRECOVERY_ERROR_APP_BROWSE_ACCESSOR_CONTENT_DB_ACCOUNT_ID_ERROR = + 0x809c111c; // 2157711644 +constexpr int ORBIS_DBRECOVERY_ERROR_APP_BROWSE_ACCESSOR_CONTENT_DB_CANTOPEN = + 0x809c1118; // 2157711640 +constexpr int ORBIS_DBRECOVERY_ERROR_APP_BROWSE_ACCESSOR_CONTENT_DB_CORRUPT = + 0x809c1117; // 2157711639 +constexpr int ORBIS_DBRECOVERY_ERROR_APP_BROWSE_ACCESSOR_CONTENT_DB_EMPTY = + 0x809c1119; // 2157711641 +constexpr int ORBIS_DBRECOVERY_ERROR_APP_BROWSE_ACCESSOR_CONTENT_DB_ERROR = + 0x809c1115; // 2157711637 +constexpr int ORBIS_DBRECOVERY_ERROR_APP_BROWSE_ACCESSOR_CONTENT_DB_FORMAT = + 0x809c111a; // 2157711642 +constexpr int ORBIS_DBRECOVERY_ERROR_APP_BROWSE_ACCESSOR_CONTENT_DB_IOERR = + 0x809c1116; // 2157711638 +constexpr int ORBIS_DBRECOVERY_ERROR_APP_BROWSE_ACCESSOR_CONTENT_DB_NOTADB = + 0x809c111b; // 2157711643 +constexpr int ORBIS_DBRECOVERY_ERROR_AV_CONTENT_ACCESSOR_ACCOUNT_ID_ERROR = + 0x809c1124; // 2157711652 +constexpr int ORBIS_DBRECOVERY_ERROR_AV_CONTENT_ACCESSOR_CANTOPEN = 0x809c1120; // 2157711648 +constexpr int ORBIS_DBRECOVERY_ERROR_AV_CONTENT_ACCESSOR_CORRUPT = 0x809c111f; // 2157711647 +constexpr int ORBIS_DBRECOVERY_ERROR_AV_CONTENT_ACCESSOR_EMPTY = 0x809c1121; // 2157711649 +constexpr int ORBIS_DBRECOVERY_ERROR_AV_CONTENT_ACCESSOR_ERROR = 0x809c111d; // 2157711645 +constexpr int ORBIS_DBRECOVERY_ERROR_AV_CONTENT_ACCESSOR_FORMAT = 0x809c1122; // 2157711650 +constexpr int ORBIS_DBRECOVERY_ERROR_AV_CONTENT_ACCESSOR_IOERR = 0x809c111e; // 2157711646 +constexpr int ORBIS_DBRECOVERY_ERROR_AV_CONTENT_ACCESSOR_NOTADB = 0x809c1123; // 2157711651 +constexpr int ORBIS_DBRECOVERY_ERROR_AV_CONTENT_MANAGER_CANTOPEN = 0x809c1136; // 2157711670 +constexpr int ORBIS_DBRECOVERY_ERROR_AV_CONTENT_MANAGER_CORRUPT = 0x809c1135; // 2157711669 +constexpr int ORBIS_DBRECOVERY_ERROR_AV_CONTENT_MANAGER_EMPTY = 0x809c1137; // 2157711671 +constexpr int ORBIS_DBRECOVERY_ERROR_AV_CONTENT_MANAGER_ERROR = 0x809c1133; // 2157711667 +constexpr int ORBIS_DBRECOVERY_ERROR_AV_CONTENT_MANAGER_FORMAT = 0x809c1138; // 2157711672 +constexpr int ORBIS_DBRECOVERY_ERROR_AV_CONTENT_MANAGER_IOERR = 0x809c1134; // 2157711668 +constexpr int ORBIS_DBRECOVERY_ERROR_AV_CONTENT_MANAGER_NOTADB = 0x809c1139; // 2157711673 +constexpr int ORBIS_DBRECOVERY_ERROR_DB_VERSION_NOT_IN_USE = 0x809c1104; // 2157711620 +constexpr int ORBIS_DBRECOVERY_ERROR_DBSL_CORRUPTED_FILE = 0x809c110d; // 2157711629 +constexpr int ORBIS_DBRECOVERY_ERROR_DBSL_WRONG_SCHEMA = 0x809c110c; // 2157711628 +constexpr int ORBIS_DBRECOVERY_ERROR_FILE_IO = 0x809c1103; // 2157711619 +constexpr int ORBIS_DBRECOVERY_ERROR_FILE_PATH_TOO_LONG = 0x809c1102; // 2157711618 +constexpr int ORBIS_DBRECOVERY_ERROR_INVALID_ARGUMENT = 0x809c1100; // 2157711616 +constexpr int ORBIS_DBRECOVERY_ERROR_INVALID_FILE = 0x809c1101; // 2157711617 +constexpr int ORBIS_DBRECOVERY_ERROR_NO_MEMORY = 0x809c1105; // 2157711621 +constexpr int ORBIS_DBRECOVERY_ERROR_NOTIFICATION_ACCESSOR_CANTOPEN = 0x809c1128; // 2157711656 +constexpr int ORBIS_DBRECOVERY_ERROR_NOTIFICATION_ACCESSOR_CORRUPT = 0x809c1127; // 2157711655 +constexpr int ORBIS_DBRECOVERY_ERROR_NOTIFICATION_ACCESSOR_EMPTY = 0x809c1129; // 2157711657 +constexpr int ORBIS_DBRECOVERY_ERROR_NOTIFICATION_ACCESSOR_ERROR = 0x809c1125; // 2157711653 +constexpr int ORBIS_DBRECOVERY_ERROR_NOTIFICATION_ACCESSOR_FORMAT = 0x809c112a; // 2157711658 +constexpr int ORBIS_DBRECOVERY_ERROR_NOTIFICATION_ACCESSOR_IOERR = 0x809c1126; // 2157711654 +constexpr int ORBIS_DBRECOVERY_ERROR_NOTIFICATION_ACCESSOR_NOTADB = 0x809c112b; // 2157711659 +constexpr int ORBIS_DBRECOVERY_ERROR_POPUP_ACCESSOR_CANTOPEN = 0x809c112f; // 2157711663 +constexpr int ORBIS_DBRECOVERY_ERROR_POPUP_ACCESSOR_CORRUPT = 0x809c112e; // 2157711662 +constexpr int ORBIS_DBRECOVERY_ERROR_POPUP_ACCESSOR_EMPTY = 0x809c1130; // 2157711664 +constexpr int ORBIS_DBRECOVERY_ERROR_POPUP_ACCESSOR_ERROR = 0x809c112c; // 2157711660 +constexpr int ORBIS_DBRECOVERY_ERROR_POPUP_ACCESSOR_FORMAT = 0x809c1131; // 2157711665 +constexpr int ORBIS_DBRECOVERY_ERROR_POPUP_ACCESSOR_IOERR = 0x809c112d; // 2157711661 +constexpr int ORBIS_DBRECOVERY_ERROR_POPUP_ACCESSOR_NOTADB = 0x809c1132; // 2157711666 +constexpr int ORBIS_DBRECOVERY_ERROR_SQLITE_CANTOPEN = 0x809c1108; // 2157711624 +constexpr int ORBIS_DBRECOVERY_ERROR_SQLITE_CORRUPT = 0x809c1107; // 2157711623 +constexpr int ORBIS_DBRECOVERY_ERROR_SQLITE_EMPTY = 0x809c1109; // 2157711625 +constexpr int ORBIS_DBRECOVERY_ERROR_SQLITE_FORMAT = 0x809c110a; // 2157711626 +constexpr int ORBIS_DBRECOVERY_ERROR_SQLITE_IOERR = 0x809c1106; // 2157711622 +constexpr int ORBIS_DBRECOVERY_ERROR_SQLITE_NOTADB = 0x809c110b; // 2157711627 + +// DBSETUP +constexpr int ORBIS_DBSETUP_ERROR_ACCES = 0x809c1006; // 2157711366 +constexpr int ORBIS_DBSETUP_ERROR_CORRUPTED_FILE = 0x809c1004; // 2157711364 +constexpr int ORBIS_DBSETUP_ERROR_CORRUPTED_INITIAL_FILE = 0x809c1005; // 2157711365 +constexpr int ORBIS_DBSETUP_ERROR_FAILED_COPY = 0x809c1003; // 2157711363 +constexpr int ORBIS_DBSETUP_ERROR_INVAL = 0x809c1008; // 2157711368 +constexpr int ORBIS_DBSETUP_ERROR_INVALID_ARG = 0x809c100c; // 2157711372 +constexpr int ORBIS_DBSETUP_ERROR_NAMETOOLONG = 0x809c1007; // 2157711367 +constexpr int ORBIS_DBSETUP_ERROR_NO_MEMORY = 0x809c100b; // 2157711371 +constexpr int ORBIS_DBSETUP_ERROR_REQUIRED_SCHEMA_UPDATE = 0x809c100a; // 2157711370 +constexpr int ORBIS_DBSETUP_ERROR_TIMEOUT = 0x809c1009; // 2157711369 +constexpr int ORBIS_DBSETUP_ERROR_WRONG_DB_PATH = 0x809c100e; // 2157711374 +constexpr int ORBIS_DBSETUP_ERROR_WRONG_DB_TYPE = 0x809c100d; // 2157711373 +constexpr int ORBIS_DBSETUP_ERROR_WRONG_DBID = 0x809c1001; // 2157711361 +constexpr int ORBIS_DBSETUP_ERROR_WRONG_SCHEMA = 0x809c1002; // 2157711362 + +// DBUTIL +constexpr int ORBIS_DBUTIL_ERROR_CANCELED = 0x809c0107; // 2157707527 +constexpr int ORBIS_DBUTIL_ERROR_FATAL = 0x809c0108; // 2157707528 +constexpr int ORBIS_DBUTIL_ERROR_INI_FILE = 0x809c0106; // 2157707526 +constexpr int ORBIS_DBUTIL_ERROR_INVALID_ARG = 0x809c0101; // 2157707521 +constexpr int ORBIS_DBUTIL_ERROR_INVALID_OP = 0x809c0103; // 2157707523 +constexpr int ORBIS_DBUTIL_ERROR_NO_MEMORY = 0x809c0102; // 2157707522 +constexpr int ORBIS_DBUTIL_ERROR_NO_ROWID = 0x809c0105; // 2157707525 +constexpr int ORBIS_DBUTIL_ERROR_NOT_FOUND = 0x809c0104; // 2157707524 +constexpr int ORBIS_DBUTIL_ERROR_NOT_SUPPORTED = 0x809c0109; // 2157707529 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_ABORT = 0x809c0204; // 2157707780 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_AUTH = 0x809c0217; // 2157707799 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_BUSY = 0x809c0205; // 2157707781 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_CANTOPEN = 0x809c020e; // 2157707790 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_CONSTRAINT = 0x809c0213; // 2157707795 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_CORRUPT = 0x809c020b; // 2157707787 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_EMPTY = 0x809c0210; // 2157707792 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_ERROR = 0x809c0201; // 2157707777 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_FORMAT = 0x809c0218; // 2157707800 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_FULL = 0x809c020d; // 2157707789 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_INTERNAL = 0x809c0202; // 2157707778 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_INTERRUPT = 0x809c0209; // 2157707785 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_IOERR = 0x809c020a; // 2157707786 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_IOERR_ACCESS = 0x809c0d0d; // 2157710605 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_IOERR_BLOCKED = 0x809c0d0b; // 2157710603 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_IOERR_CHECKRESERVEDLOCK = 0x809c0d0e; // 2157710606 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_IOERR_CLOSE = 0x809c0d10; // 2157710608 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_IOERR_DELETE = 0x809c0d0a; // 2157710602 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_IOERR_DIR_CLOSE = 0x809c0d11; // 2157710609 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_IOERR_DIR_FSYNC = 0x809c0d05; // 2157710597 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_IOERR_FSTAT = 0x809c0d07; // 2157710599 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_IOERR_FSYNC = 0x809c0d04; // 2157710596 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_IOERR_LOCK = 0x809c0d0f; // 2157710607 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_IOERR_NOMEM = 0x809c0d0c; // 2157710604 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_IOERR_RDLOCK = 0x809c0d09; // 2157710601 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_IOERR_READ = 0x809c0d01; // 2157710593 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_IOERR_SHORT_READ = 0x809c0d02; // 2157710594 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_IOERR_TRUNCATE = 0x809c0d06; // 2157710598 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_IOERR_UNLOCK = 0x809c0d08; // 2157710600 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_IOERR_WRITE = 0x809c0d03; // 2157710595 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_LOCKED = 0x809c0206; // 2157707782 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_LOCKED_SHAREDCACHE = 0x809c0d12; // 2157710610 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_MISMATCH = 0x809c0214; // 2157707796 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_MISUSE = 0x809c0215; // 2157707797 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_NOLFS = 0x809c0216; // 2157707798 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_NOMEM = 0x809c0207; // 2157707783 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_NOTADB = 0x809c021a; // 2157707802 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_NOTFOUND = 0x809c020c; // 2157707788 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_PERM = 0x809c0203; // 2157707779 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_PROTOCOL = 0x809c020f; // 2157707791 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_RANGE = 0x809c0219; // 2157707801 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_READONLY = 0x809c0208; // 2157707784 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_SCHEMA = 0x809c0211; // 2157707793 +constexpr int ORBIS_DBUTIL_ERROR_SQLITE_TOOBIG = 0x809c0212; // 2157707794 + +// DISC_PLAYER +constexpr int ORBIS_DISC_PLAYER_ERROR_AACS_CONTENTS_REVOCATION = 0x81140002; // 2165571586 +constexpr int ORBIS_DISC_PLAYER_ERROR_AACS_CRL = 0x81140008; // 2165571592 +constexpr int ORBIS_DISC_PLAYER_ERROR_AACS_CRL_TRM = 0x8114000a; // 2165571594 +constexpr int ORBIS_DISC_PLAYER_ERROR_AACS_DOT = 0x8114000d; // 2165571597 +constexpr int ORBIS_DISC_PLAYER_ERROR_AACS_DRIVE = 0x81140006; // 2165571590 +constexpr int ORBIS_DISC_PLAYER_ERROR_AACS_DRIVE_REVOCATION = 0x81140001; // 2165571585 +constexpr int ORBIS_DISC_PLAYER_ERROR_AACS_DRL = 0x81140007; // 2165571591 +constexpr int ORBIS_DISC_PLAYER_ERROR_AACS_DRL_TRM = 0x81140009; // 2165571593 +constexpr int ORBIS_DISC_PLAYER_ERROR_AACS_EX_TITLE_PLAY = 0x8114000c; // 2165571596 +constexpr int ORBIS_DISC_PLAYER_ERROR_AACS_GET_KEY_FAILED = 0x81140003; // 2165571587 +constexpr int ORBIS_DISC_PLAYER_ERROR_AACS_HOST_REVOCATION = 0x81140000; // 2165571584 +constexpr int ORBIS_DISC_PLAYER_ERROR_AACS_MKBTYPE = 0x8114000b; // 2165571595 +constexpr int ORBIS_DISC_PLAYER_ERROR_AACS_NO_FILE = 0x81140005; // 2165571589 +constexpr int ORBIS_DISC_PLAYER_ERROR_AACS_NOT_AACS = 0x81140004; // 2165571588 +constexpr int ORBIS_DISC_PLAYER_ERROR_AACS_VERIFY = 0x8114000e; // 2165571598 +constexpr int ORBIS_DISC_PLAYER_ERROR_AUDWM_NHU = 0x81140025; // 2165571621 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPRM_DECRYPT = 0x8114001a; // 2165571610 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPRM_DEVICEKEY = 0x81140019; // 2165571609 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPRM_DRIVE = 0x81140018; // 2165571608 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_CSS_CONTENT_REVOKE = 0x8114008c; // 2165571724 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_CSS_VERIFY_FLASH_FAILED = 0x8114008d; // 2165571725 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_ERROR = 0x8114001b; // 2165571611 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_BAD_ALLOC = 0x8114008a; // 2165571722 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_BDJ_ROOT_CERT_ERROR = 0x81140085; // 2165571717 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_CRL_CLOSE_ERROR = 0x81140037; // 2165571639 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_CRL_ERROR = 0x81140083; // 2165571715 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_CRL_OPEN_ERROR = 0x81140036; // 2165571638 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_CRL_READ_ERROR = 0x8114003c; // 2165571644 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_CRL_UPDATE_ERROR = 0x8114003d; // 2165571645 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_CRYPT_API_ERROR = 0x81140075; // 2165571701 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DECRYPT_INIT_ERROR = 0x81140053; // 2165571667 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DEVICE_KEY_UPDATE_TIMES_ERROR = + 0x81140052; // 2165571666 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DEVICE_KEY_VERSION_ERROR = + 0x81140051; // 2165571665 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_INIT_BNA_ZERO_ERROR = + 0x81140060; // 2165571680 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_INIT_CALC_BUSKEY_ERROR = + 0x81140059; // 2165571673 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_INIT_GET_AGID_ERROR = + 0x81140054; // 2165571668 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_INIT_GET_BDLAYER_INFO_ERROR = + 0x8114005c; // 2165571676 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_INIT_GET_BN_ERROR = + 0x81140061; // 2165571681 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_INIT_GET_BNA_FEATURE_ERROR = + 0x8114005f; // 2165571679 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_INIT_GET_DCERT_ERROR = + 0x81140056; // 2165571670 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_INIT_GET_DV_AND_DSIG_ERROR = + 0x81140057; // 2165571671 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_INIT_GET_DVD_PFI_ERROR = + 0x8114005b; // 2165571675 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_INIT_GET_MEDIAID_ERROR = + 0x8114005e; // 2165571678 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_INIT_GET_PMSN_AND_DMAC_ERROR = + 0x8114005d; // 2165571677 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_INIT_GET_VIDMAC_ERROR = + 0x8114005a; // 2165571674 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_INIT_SET_HCERT_ERROR = + 0x81140055; // 2165571669 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_INIT_SET_HV_AND_HSIG_ERROR = + 0x81140058; // 2165571672 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_TCHG_BNA_ZERO_ERROR = + 0x8114006e; // 2165571694 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_TCHG_CALC_BUSKEY_ERROR = + 0x81140067; // 2165571687 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_TCHG_GET_AGID_ERROR = + 0x81140062; // 2165571682 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_TCHG_GET_BDLAYER_INFO_ERROR = + 0x8114006a; // 2165571690 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_TCHG_GET_BN_ERROR = + 0x8114006f; // 2165571695 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_TCHG_GET_BNA_FEATURE_ERROR = + 0x8114006d; // 2165571693 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_TCHG_GET_DCERT_ERROR = + 0x81140064; // 2165571684 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_TCHG_GET_DV_AND_DSIG_ERROR = + 0x81140065; // 2165571685 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_TCHG_GET_DVD_PFI_ERROR = + 0x81140069; // 2165571689 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_TCHG_GET_MEDIAID_ERROR = + 0x8114006c; // 2165571692 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_TCHG_GET_PMSN_AND_DMAC_ERROR = + 0x8114006b; // 2165571691 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_TCHG_GET_VIDMAC_ERROR = + 0x81140068; // 2165571688 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_TCHG_SET_HCERT_ERROR = + 0x81140063; // 2165571683 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRIVE_AUTH_TCHG_SET_HV_AND_HSIG_ERROR = + 0x81140066; // 2165571686 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRL_CLOSE_ERROR = 0x81140039; // 2165571641 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRL_ERROR = 0x81140084; // 2165571716 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRL_OPEN_ERROR = 0x81140038; // 2165571640 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRL_READ_ERROR = 0x8114003e; // 2165571646 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_DRL_UPDATE_ERROR = 0x8114003f; // 2165571647 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_EBIND_ERROR = 0x81140081; // 2165571713 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_FLASH_MEM_ALLOC_ERROR = 0x81140050; // 2165571664 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_GET_BUS_ENCRYPT_KEY_ERROR = + 0x81140079; // 2165571705 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_GET_FILE_ATTR_ERROR = 0x81140086; // 2165571718 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_HDD_INIT_CRL_CLOSE_ERROR = + 0x8114002f; // 2165571631 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_HDD_INIT_CRL_OPEN_ERROR = + 0x8114002e; // 2165571630 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_HDD_INIT_CRL_UPDATE_ERROR = + 0x81140032; // 2165571634 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_HDD_INIT_DRL_CLOSE_ERROR = + 0x81140031; // 2165571633 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_HDD_INIT_DRL_OPEN_ERROR = + 0x81140030; // 2165571632 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_HDD_INIT_DRL_UPDATE_ERROR = + 0x81140033; // 2165571635 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_HDD_MKDIR_ERROR = 0x81140049; // 2165571657 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_HDD_MOUNT_ERROR = 0x81140048; // 2165571656 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_HDD_NEWFS_ERROR = 0x81140046; // 2165571654 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_HDD_UMMOUNT_ERROR = 0x81140047; // 2165571655 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_HDD_UNLINK_ERROR = 0x8114004a; // 2165571658 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_INVALID_MEDIA_FORMAT_ERROR = + 0x81140089; // 2165571721 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_NORFLASH_DEVICE_INFO_SECTOR_SIZE_ERROR = + 0x8114004e; // 2165571662 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_NORFLASH_DEVICE_INFO_WRITE_FLASG_ERROR = + 0x8114004f; // 2165571663 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_NORFLASH_GET_DEVICE_INFO_ERROR = + 0x8114004d; // 2165571661 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_NORFLASH_INIT_CLOSE_ERROR = + 0x81140027; // 2165571623 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_NORFLASH_INIT_CRL_READ_ERROR = + 0x81140028; // 2165571624 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_NORFLASH_INIT_CRL_UPDATE_ERROR = + 0x81140029; // 2165571625 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_NORFLASH_INIT_DRL_READ_ERROR = + 0x8114002a; // 2165571626 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_NORFLASH_INIT_DRL_UPDATE_ERROR = + 0x8114002b; // 2165571627 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_NORFLASH_INIT_OCRL_READ_ERROR = + 0x8114007a; // 2165571706 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_NORFLASH_INIT_OCRL_UPDATE_ERROR = + 0x8114007b; // 2165571707 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_NORFLASH_INIT_OPEN_ERROR = + 0x81140026; // 2165571622 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_NORFLASH_INIT_SRM_READ_ERROR = + 0x8114002c; // 2165571628 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_NORFLASH_INIT_SRM_UPDATE_ERROR = + 0x8114002d; // 2165571629 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_NORFLASH_IS_PRODUCT_MODE_ERROR = + 0x8114004b; // 2165571659 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_NORFLASH_IS_VFL_ON_ERROR = + 0x8114004c; // 2165571660 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_OCRL_CLOSE_ERROR = 0x8114007d; // 2165571709 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_OCRL_OPEN_ERROR = 0x8114007c; // 2165571708 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_OCRL_READ_ERROR = 0x8114007e; // 2165571710 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_OCRL_UPDATE_ERROR = 0x8114007f; // 2165571711 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_PERMISSION_ERROR = 0x8114008b; // 2165571723 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_PROCESS_MKB_ERROR = 0x81140071; // 2165571697 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_PROCESS_SKB_ERROR = 0x81140073; // 2165571699 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_SETUP_TITLE_ERROR = 0x81140077; // 2165571703 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_SHARE_SPURS_ERROR = 0x81140087; // 2165571719 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_SPU_INIT_ERROR = 0x81140076; // 2165571702 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_SRM_CLOSE_ERROR = 0x8114003b; // 2165571643 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_SRM_OPEN_ERROR = 0x8114003a; // 2165571642 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_SRM_READ_ERROR = 0x81140040; // 2165571648 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_SRM_UPDATE_ERROR = 0x81140041; // 2165571649 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_SYSTEMFILE_INDEX_ERROR = + 0x81140074; // 2165571700 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_TITLE_USAGE_ERROR = 0x81140078; // 2165571704 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_TRACK_BUFFER_ERROR = 0x81140088; // 2165571720 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_TRM_CLEAR_ERROR = 0x81140080; // 2165571712 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_TRM_CRL_READ_ERROR = 0x81140042; // 2165571650 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_TRM_CRL_UPDATE_ERROR = 0x81140043; // 2165571651 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_TRM_DRL_READ_ERROR = 0x81140044; // 2165571652 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_TRM_DRL_UPDATE_ERROR = 0x81140045; // 2165571653 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_TRM_INIT_CRL_UPDATE_ERROR = + 0x81140034; // 2165571636 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_TRM_INIT_DRL_UPDATE_ERROR = + 0x81140035; // 2165571637 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_UNIT_USAGE_ERROR = 0x81140082; // 2165571714 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_VERIFY_MKB_ERROR = 0x81140070; // 2165571696 +constexpr int ORBIS_DISC_PLAYER_ERROR_CPS_SYSTEM_D_VERIFY_SKB_ERROR = 0x81140072; // 2165571698 +constexpr int ORBIS_DISC_PLAYER_ERROR_CSS_DEADCOPYDISC = 0x81140017; // 2165571607 +constexpr int ORBIS_DISC_PLAYER_ERROR_CSS_DECRYPT = 0x81140016; // 2165571606 +constexpr int ORBIS_DISC_PLAYER_ERROR_CSS_DISCKEY = 0x81140013; // 2165571603 +constexpr int ORBIS_DISC_PLAYER_ERROR_CSS_DRIVE = 0x81140012; // 2165571602 +constexpr int ORBIS_DISC_PLAYER_ERROR_CSS_INVALID_REGION = 0x81140014; // 2165571604 +constexpr int ORBIS_DISC_PLAYER_ERROR_CSS_TITLEKEY = 0x81140015; // 2165571605 +constexpr int ORBIS_DISC_PLAYER_ERROR_DECODER_RES_ACQUIRE_FAIL = 0x8114008e; // 2165571726 +constexpr int ORBIS_DISC_PLAYER_ERROR_DECODER_RES_RELEASE_REQ = 0x8114008f; // 2165571727 +constexpr int ORBIS_DISC_PLAYER_ERROR_ERROR_STOP = 0x81140021; // 2165571617 +constexpr int ORBIS_DISC_PLAYER_ERROR_HDCP_INVALID_KSV = 0x81140010; // 2165571600 +constexpr int ORBIS_DISC_PLAYER_ERROR_HDCP_REVOCATION = 0x8114000f; // 2165571599 +constexpr int ORBIS_DISC_PLAYER_ERROR_HDCP_VERIFY_SRM = 0x81140011; // 2165571601 +constexpr int ORBIS_DISC_PLAYER_ERROR_HDD_FULL = 0x81140023; // 2165571619 +constexpr int ORBIS_DISC_PLAYER_ERROR_INVALID_FORMAT = 0x8114001c; // 2165571612 +constexpr int ORBIS_DISC_PLAYER_ERROR_INVALID_REGION = 0x8114001f; // 2165571615 +constexpr int ORBIS_DISC_PLAYER_ERROR_INVALID_TITLE = 0x81140020; // 2165571616 +constexpr int ORBIS_DISC_PLAYER_ERROR_INVALID_TVSYSTEM_NTSC = 0x8114001e; // 2165571614 +constexpr int ORBIS_DISC_PLAYER_ERROR_INVALID_TVSYSTEM_PAL = 0x8114001d; // 2165571613 +constexpr int ORBIS_DISC_PLAYER_ERROR_MV_EXT_OUTPUT = 0x81140024; // 2165571620 +constexpr int ORBIS_DISC_PLAYER_ERROR_UNEXPECTED_ERROR = 0x81140022; // 2165571618 + +// DTCP_IP +constexpr int ORBIS_DTCP_IP_ACTIVATE_ERROR_CANCEL = 0x81160000; // 2165702656 +constexpr int ORBIS_DTCP_IP_ACTIVATE_ERROR_GENERIC = 0x81160002; // 2165702658 +constexpr int ORBIS_DTCP_IP_ACTIVATE_ERROR_PARAM = 0x81160001; // 2165702657 +constexpr int ORBIS_DTCP_IP_ERROR_ACTIVATE_GENERIC = 0x81160111; // 2165702929 +constexpr int ORBIS_DTCP_IP_ERROR_ACTIVATE_INTERNAL = 0x81160112; // 2165702930 +constexpr int ORBIS_DTCP_IP_ERROR_ACTIVATE_PROXY = 0x81160203; // 2165703171 +constexpr int ORBIS_DTCP_IP_ERROR_ACTIVATE_RESOLVER_ENODNS = 0x81160200; // 2165703168 +constexpr int ORBIS_DTCP_IP_ERROR_ACTIVATE_RESOLVER_ETIMEDOUT = 0x81160201; // 2165703169 +constexpr int ORBIS_DTCP_IP_ERROR_ACTIVATE_TIMEOUT = 0x81160202; // 2165703170 +constexpr int ORBIS_DTCP_IP_ERROR_AUTH_CANNOT_ACCESS = 0x81160107; // 2165702919 +constexpr int ORBIS_DTCP_IP_ERROR_AUTH_FAILED = 0x81160108; // 2165702920 +constexpr int ORBIS_DTCP_IP_ERROR_AUTH_FAILED_WLAN = 0x81160109; // 2165702921 +constexpr int ORBIS_DTCP_IP_ERROR_AUTH_INVALID_HOSTNAME = 0x81160105; // 2165702917 +constexpr int ORBIS_DTCP_IP_ERROR_AUTH_SERVER_NOT_FOUND = 0x81160106; // 2165702918 +constexpr int ORBIS_DTCP_IP_ERROR_BUSY = 0x81160100; // 2165702912 +constexpr int ORBIS_DTCP_IP_ERROR_CANCEL = 0x81160101; // 2165702913 +constexpr int ORBIS_DTCP_IP_ERROR_DEVCERT_EXPIRED = 0x8116010a; // 2165702922 +constexpr int ORBIS_DTCP_IP_ERROR_GENERIC = 0x81160102; // 2165702914 +constexpr int ORBIS_DTCP_IP_ERROR_HTTP_CONNECTION_CLOSED = 0x81160110; // 2165702928 +constexpr int ORBIS_DTCP_IP_ERROR_IPC = 0x81160121; // 2165702945 +constexpr int ORBIS_DTCP_IP_ERROR_IPC_TIMEOUT = 0x81160122; // 2165702946 +constexpr int ORBIS_DTCP_IP_ERROR_KEY_BUFFER_TOO_SMALL = 0x81160117; // 2165702935 +constexpr int ORBIS_DTCP_IP_ERROR_KEY_FATAL = 0x8116010d; // 2165702925 +constexpr int ORBIS_DTCP_IP_ERROR_KEY_NEED_ACTIVATE = 0x8116010b; // 2165702923 +constexpr int ORBIS_DTCP_IP_ERROR_KEY_NEED_CLOCK_SETUP = 0x8116010e; // 2165702926 +constexpr int ORBIS_DTCP_IP_ERROR_KEY_NEED_UPDATE = 0x8116010c; // 2165702924 +constexpr int ORBIS_DTCP_IP_ERROR_KEY_REGISTRY_ACCESS = 0x81160116; // 2165702934 +constexpr int ORBIS_DTCP_IP_ERROR_KEY_SRM_TOO_LARGE = 0x81160118; // 2165702936 +constexpr int ORBIS_DTCP_IP_ERROR_MOVE_COMMITMENT_ABORTED = 0x81160113; // 2165702931 +constexpr int ORBIS_DTCP_IP_ERROR_MOVE_COMMITMENT_NEED_RETRY = 0x81160114; // 2165702932 +constexpr int ORBIS_DTCP_IP_ERROR_NEED_TERMINATION = 0x81160123; // 2165702947 +constexpr int ORBIS_DTCP_IP_ERROR_OUT_OF_MEMORY = 0x81160115; // 2165702933 +constexpr int ORBIS_DTCP_IP_ERROR_PARAM = 0x81160104; // 2165702916 +constexpr int ORBIS_DTCP_IP_ERROR_SEQUENCE = 0x81160103; // 2165702915 +constexpr int ORBIS_DTCP_IP_ERROR_STREAM_GENERIC = 0x8116010f; // 2165702927 +constexpr int ORBIS_DTCP_IP_ERROR_SW_BUSY = 0x8116011e; // 2165702942 +constexpr int ORBIS_DTCP_IP_ERROR_SW_END_OF_DATA = 0x8116011d; // 2165702941 +constexpr int ORBIS_DTCP_IP_ERROR_SW_INVALID_ARG = 0x8116011f; // 2165702943 +constexpr int ORBIS_DTCP_IP_ERROR_SW_INVALID_STATE = 0x81160120; // 2165702944 +constexpr int ORBIS_DTCP_IP_ERROR_SW_NOT_IMPLEMENTED = 0x8116011c; // 2165702940 +constexpr int ORBIS_DTCP_IP_ERROR_SW_STREAM_EOS = 0x8116011b; // 2165702939 +constexpr int ORBIS_DTCP_IP_ERROR_SW_TIMEOUT = 0x8116011a; // 2165702938 +constexpr int ORBIS_DTCP_IP_ERROR_SW_UNKNOWN = 0x81160119; // 2165702937 + +// ERROR_DIALOG +constexpr int ORBIS_ERROR_DIALOG_ERROR_ALREADY_INITIALIZED = 0x80ed0002; // 2163015682 +constexpr int ORBIS_ERROR_DIALOG_ERROR_INVALID_STATE = 0x80ed0005; // 2163015685 +constexpr int ORBIS_ERROR_DIALOG_ERROR_INVALID_USER_ID = 0x80ed0007; // 2163015687 +constexpr int ORBIS_ERROR_DIALOG_ERROR_NOT_INITIALIZED = 0x80ed0001; // 2163015681 +constexpr int ORBIS_ERROR_DIALOG_ERROR_PARAM_INVALID = 0x80ed0003; // 2163015683 +constexpr int ORBIS_ERROR_DIALOG_ERROR_SERVICE_BUSY = 0x80ed0006; // 2163015686 +constexpr int ORBIS_ERROR_DIALOG_ERROR_UNEXPECTED_FATAL = 0x80ed0004; // 2163015684 + +// FILE_BROWSER +constexpr int ORBIS_FILE_BROWSER_ERROR_BROKEN_DATA = 0x81030107; // 2164457735 +constexpr int ORBIS_FILE_BROWSER_ERROR_CAN_NOT_PLAY = 0x81030106; // 2164457734 +constexpr int ORBIS_FILE_BROWSER_ERROR_GENERAL = 0x81030100; // 2164457728 +constexpr int ORBIS_FILE_BROWSER_ERROR_INVALID_ARGUMENT = 0x81030101; // 2164457729 +constexpr int ORBIS_FILE_BROWSER_ERROR_INVALID_INPUT_LENGTH = 0x81030109; // 2164457737 +constexpr int ORBIS_FILE_BROWSER_ERROR_NOT_FOUND = 0x81030104; // 2164457732 +constexpr int ORBIS_FILE_BROWSER_ERROR_NOT_SUPPORTED_DATA = 0x81030105; // 2164457733 +constexpr int ORBIS_FILE_BROWSER_ERROR_OUT_OF_MEMORY = 0x81030102; // 2164457730 +constexpr int ORBIS_FILE_BROWSER_ERROR_OUT_OF_RANGE = 0x81030103; // 2164457731 +constexpr int ORBIS_FILE_BROWSER_ERROR_PARENTAL_CONTROL_LOCK = 0x81030108; // 2164457736 + +// FILE_SELECTOR +constexpr int ORBIS_FILE_SELECTOR_ERROR_BROKEN_DATA = 0x81020107; // 2164392199 +constexpr int ORBIS_FILE_SELECTOR_ERROR_CAN_NOT_PLAY = 0x81020106; // 2164392198 +constexpr int ORBIS_FILE_SELECTOR_ERROR_COPY = 0x81020113; // 2164392211 +constexpr int ORBIS_FILE_SELECTOR_ERROR_DELETE = 0x81020114; // 2164392212 +constexpr int ORBIS_FILE_SELECTOR_ERROR_GENERAL = 0x81020100; // 2164392192 +constexpr int ORBIS_FILE_SELECTOR_ERROR_INVALID_ARGUMENT = 0x81020101; // 2164392193 +constexpr int ORBIS_FILE_SELECTOR_ERROR_NO_STRAGE_SPACE = 0x81020110; // 2164392208 +constexpr int ORBIS_FILE_SELECTOR_ERROR_NO_USB_STORAGE_DEVICE = 0x8102010e; // 2164392206 +constexpr int ORBIS_FILE_SELECTOR_ERROR_NOT_FOUND = 0x81020104; // 2164392196 +constexpr int ORBIS_FILE_SELECTOR_ERROR_NOT_FOUND_COPY_DIR = 0x8102010b; // 2164392203 +constexpr int ORBIS_FILE_SELECTOR_ERROR_NOT_SUPPORTED_DATA = 0x81020105; // 2164392197 +constexpr int ORBIS_FILE_SELECTOR_ERROR_ONLY_ONE_USB_STORAGE_SUPPORTED = 0x8102010f; // 2164392207 +constexpr int ORBIS_FILE_SELECTOR_ERROR_OUT_OF_MEMORY = 0x81020102; // 2164392194 +constexpr int ORBIS_FILE_SELECTOR_ERROR_OUT_OF_RANGE = 0x81020103; // 2164392195 +constexpr int ORBIS_FILE_SELECTOR_ERROR_PARENTAL_CONTROL_LOCK = 0x81020108; // 2164392200 +constexpr int ORBIS_FILE_SELECTOR_ERROR_PREVIEW = 0x81020109; // 2164392201 +constexpr int ORBIS_FILE_SELECTOR_ERROR_PREVIEW_NOT_ENOUGH_SYSTEM_MEMORY = 0x8102010a; // 2164392202 +constexpr int ORBIS_FILE_SELECTOR_ERROR_STRAGE_LOCKED = 0x81020112; // 2164392210 +constexpr int ORBIS_FILE_SELECTOR_ERROR_USB_STORAGE_CANNOT_ACCESS = 0x8102010c; // 2164392204 +constexpr int ORBIS_FILE_SELECTOR_ERROR_USB_STORAGE_DISCONNECTED = 0x8102010d; // 2164392205 +constexpr int ORBIS_FILE_SELECTOR_ERROR_WRITE_ACCESS = 0x81020111; // 2164392209 + +// GAME +constexpr int ORBIS_GAME_CUSTOM_DATA_DIALOG_ERROR_BLOCKED_ALL_PLAYERS = 0x810b0001; // 2164981761 +constexpr int ORBIS_GAME_LIVE_BROADCASTING_ERROR_ACCOUNT_NOT_LINKED = 0x80f10003; // 2163277827 +constexpr int ORBIS_GAME_LIVE_BROADCASTING_ERROR_ADVERT_CANT_START = 0x80f10007; // 2163277831 +constexpr int ORBIS_GAME_LIVE_BROADCASTING_ERROR_ANOTHER_USER_BROADCASTING = + 0x80f10010; // 2163277840 +constexpr int ORBIS_GAME_LIVE_BROADCASTING_ERROR_BROADCASTING_PROHIBITED_AREA = + 0x80f1000e; // 2163277838 +constexpr int ORBIS_GAME_LIVE_BROADCASTING_ERROR_CANT_CONNECT_NETWORK = 0x80f10009; // 2163277833 +constexpr int ORBIS_GAME_LIVE_BROADCASTING_ERROR_CANT_CONNECT_SERVER = 0x80f1000d; // 2163277837 +constexpr int ORBIS_GAME_LIVE_BROADCASTING_ERROR_CONNECTION_SERVER_DISCONNECT = + 0x80f1000c; // 2163277836 +constexpr int ORBIS_GAME_LIVE_BROADCASTING_ERROR_NETWORK_CONNECTION_LOST = 0x80f1000a; // 2163277834 +constexpr int ORBIS_GAME_LIVE_BROADCASTING_ERROR_NOT_AVAILABLE_FEATURE = 0x80f10008; // 2163277832 +constexpr int ORBIS_GAME_LIVE_BROADCASTING_ERROR_NW_NO_CONNECTION = 0x80f10001; // 2163277825 +constexpr int ORBIS_GAME_LIVE_BROADCASTING_ERROR_NW_SERVER_NOT_FOUND = 0x80f10002; // 2163277826 +constexpr int ORBIS_GAME_LIVE_BROADCASTING_ERROR_PAR12 = 0x80f10004; // 2163277828 +constexpr int ORBIS_GAME_LIVE_BROADCASTING_ERROR_PROGRAM_ALREADY_FINISHED = + 0x80f1000f; // 2163277839 +constexpr int ORBIS_GAME_LIVE_BROADCASTING_ERROR_SCANIN_CLOSE_TIME_OUT = 0x80f10006; // 2163277830 +constexpr int ORBIS_GAME_LIVE_BROADCASTING_ERROR_SERVER_CONNECT_TIMEOUT = 0x80f1000b; // 2163277835 +constexpr int ORBIS_GAME_LIVE_BROADCASTING_ERROR_SUB_ACCOUNT = 0x80f10005; // 2163277829 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_AD_ADITEM_UPDATE = 0x80f20104; // 2163343620 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_AD_HTTP_REQUEST_CANCELED = 0x80f20105; // 2163343621 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_AD_HTTP_REQUEST_ERROR = 0x80f20107; // 2163343623 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_AD_HTTP_REQUEST_TIMEOUT = 0x80f20106; // 2163343622 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_AD_PLAYLIST_NO_NEXT_AD = 0x80f20103; // 2163343619 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_AD_PLAYLIST_PARSE = 0x80f20102; // 2163343618 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_AD_PLAYLIST_UPDATE = 0x80f20101; // 2163343617 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_PROVIDER_SETTINGS_READ_ERROR = + 0x80f20108; // 2163343624 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_TOO_MANY_VIEWERS = 0x80f20001; // 2163343361 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_ENABLE_RAZOR = 0x80f20520; // 2163344672 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_INTERNAL = 0x80f20517; // 2163344663 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_INTERNAL_CORE = 0x80f20521; // 2163344673 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_INVALID_PARAM = 0x80f20501; // 2163344641 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_INVALID_PARAM_CORE = + 0x80f20518; // 2163344664 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_INVALID_PARAM_COREIF = + 0x80f20502; // 2163344642 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_INVALID_STATUS = 0x80f20503; // 2163344643 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_INVALID_STATUS_CORE = + 0x80f20519; // 2163344665 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_INVALID_STATUS_COREIF = + 0x80f20504; // 2163344644 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_IPMI = 0x80f2050a; // 2163344650 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_IPMI_CORE = 0x80f2051f; // 2163344671 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_IPMI_COREIF = 0x80f2050b; // 2163344651 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_KERNEL_FUNCTION = 0x80f20509; // 2163344649 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_KERNEL_FUNCTION_CORE = + 0x80f2051e; // 2163344670 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_NO_ALLOCATE_MEMORY = + 0x80f2050c; // 2163344652 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_NO_DECODER_RESOURCE = + 0x80f20514; // 2163344660 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_NOPLAYABLE = 0x80f2051b; // 2163344667 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_NOT_EXIST_REQUESTID = + 0x80f20510; // 2163344656 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_NOT_EXIST_RESOURCE_HANDLE = + 0x80f20513; // 2163344659 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_NOT_EXIST_STREAM = + 0x80f2051a; // 2163344666 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_NOT_EXIST_STREAMID = + 0x80f20506; // 2163344646 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_REGISTERED_CALLBACK_FULL = + 0x80f20511; // 2163344657 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_REQUEST_FULL = 0x80f2050f; // 2163344655 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_RESOURCE_HANDLE_FULL = + 0x80f20512; // 2163344658 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_RESULT_TIMEOUT = 0x80f2050e; // 2163344654 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_SCE_FUNCTION = 0x80f20508; // 2163344648 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_SCE_FUNCTION_CORE = + 0x80f2051d; // 2163344669 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_STOP = 0x80f2051c; // 2163344668 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_STREAM_ABORTED = 0x80f20516; // 2163344662 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_STREAM_FULL = 0x80f20505; // 2163344645 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_STREAM_SUSPENDED = + 0x80f20515; // 2163344661 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_UNUSABLE_THIS_API = + 0x80f2050d; // 2163344653 +constexpr int ORBIS_GAME_LIVE_SPECTATING_ERROR_VIDEOCORE_VIDEOCORE_FUNCTION = + 0x80f20507; // 2163344647 +constexpr int ORBIS_GAME_LIVE_STREAMING_ERROR_ENCODER = 0x80a00005; // 2157969413 +constexpr int ORBIS_GAME_LIVE_STREAMING_ERROR_INVALID_PARAM = 0x80a00002; // 2157969410 +constexpr int ORBIS_GAME_LIVE_STREAMING_ERROR_INVALID_STATUS = 0x80a00003; // 2157969411 +constexpr int ORBIS_GAME_LIVE_STREAMING_ERROR_NOT_FOUND = 0x80a00007; // 2157969415 +constexpr int ORBIS_GAME_LIVE_STREAMING_ERROR_NOT_INITIALIZED = 0x80a00004; // 2157969412 +constexpr int ORBIS_GAME_LIVE_STREAMING_ERROR_NOT_SUPPORTED = 0x80a00008; // 2157969416 +constexpr int ORBIS_GAME_LIVE_STREAMING_ERROR_OUT_OF_MEMORY = 0x80a00006; // 2157969414 +constexpr int ORBIS_GAME_LIVE_STREAMING_ERROR_UNKNOWN = 0x80a00001; // 2157969409 +constexpr int ORBIS_GAME_UPDATE_ERROR_ABORTED = 0x80412807; // 2151753735 +constexpr int ORBIS_GAME_UPDATE_ERROR_ALREADY_INITIALIZED = 0x80412802; // 2151753730 +constexpr int ORBIS_GAME_UPDATE_ERROR_BUSY = 0x80412808; // 2151753736 +constexpr int ORBIS_GAME_UPDATE_ERROR_INVALID_ARG = 0x80412803; // 2151753731 +constexpr int ORBIS_GAME_UPDATE_ERROR_INVALID_SIZE = 0x80412804; // 2151753732 +constexpr int ORBIS_GAME_UPDATE_ERROR_NO_SUCH_TITLE = 0x8041280a; // 2151753738 +constexpr int ORBIS_GAME_UPDATE_ERROR_NOT_INITIALIZED = 0x80412801; // 2151753729 +constexpr int ORBIS_GAME_UPDATE_ERROR_REQUEST_NOT_FOUND = 0x80412805; // 2151753733 +constexpr int ORBIS_GAME_UPDATE_ERROR_TOO_MANY_REQUESTS = 0x80412806; // 2151753734 +constexpr int ORBIS_GAME_UPDATE_VSH_ERROR_ABORTED = 0x80412887; // 2151753863 +constexpr int ORBIS_GAME_UPDATE_VSH_ERROR_ALREADY_INITIALIZED = 0x80412882; // 2151753858 +constexpr int ORBIS_GAME_UPDATE_VSH_ERROR_BAD_RESPONSE = 0x8041288e; // 2151753870 +constexpr int ORBIS_GAME_UPDATE_VSH_ERROR_BUSY = 0x80412888; // 2151753864 +constexpr int ORBIS_GAME_UPDATE_VSH_ERROR_HTTP_BAD_RESPONSE = 0x80412895; // 2151753877 +constexpr int ORBIS_GAME_UPDATE_VSH_ERROR_HTTP_CONNECTION_ERROR = 0x80412893; // 2151753875 +constexpr int ORBIS_GAME_UPDATE_VSH_ERROR_HTTP_LOCAL_ERROR = 0x80412892; // 2151753874 +constexpr int ORBIS_GAME_UPDATE_VSH_ERROR_HTTP_OUT_OF_MEMORY = 0x80412891; // 2151753873 +constexpr int ORBIS_GAME_UPDATE_VSH_ERROR_HTTP_PROXY_ERROR = 0x80412894; // 2151753876 +constexpr int ORBIS_GAME_UPDATE_VSH_ERROR_INTERNAL = 0x80412890; // 2151753872 +constexpr int ORBIS_GAME_UPDATE_VSH_ERROR_INVALID_ARG = 0x80412883; // 2151753859 +constexpr int ORBIS_GAME_UPDATE_VSH_ERROR_INVALID_NP_ENVIRONMENT = 0x8041288b; // 2151753867 +constexpr int ORBIS_GAME_UPDATE_VSH_ERROR_MEMORY = 0x8041288f; // 2151753871 +constexpr int ORBIS_GAME_UPDATE_VSH_ERROR_NOT_EXIST = 0x8041288c; // 2151753868 +constexpr int ORBIS_GAME_UPDATE_VSH_ERROR_NOT_INITIALIZED = 0x80412881; // 2151753857 +constexpr int ORBIS_GAME_UPDATE_VSH_ERROR_PARSER_FAILED = 0x8041288d; // 2151753869 + +// GLS +constexpr int ORBIS_GLS_ERROR_ABORTED = 0x80a0010f; // 2157969679 +constexpr int ORBIS_GLS_ERROR_ALREADY = 0x80a0010c; // 2157969676 +constexpr int ORBIS_GLS_ERROR_AUTH_FAILED_N = 0x80a04108; // 2157986056 +constexpr int ORBIS_GLS_ERROR_BE = 0x80a00202; // 2157969922 +constexpr int ORBIS_GLS_ERROR_CAPACITY_EXCEEDED = 0x80a00110; // 2157969680 +constexpr int ORBIS_GLS_ERROR_COMMENT_SERVER_OTHER_N = 0x80a04101; // 2157986049 +constexpr int ORBIS_GLS_ERROR_COULD_NOT_CONNECT_COMMENT_SERVER_N = 0x80a04100; // 2157986048 +constexpr int ORBIS_GLS_ERROR_COULD_NOT_CONNECT_SERVER_N = 0x80a04102; // 2157986050 +constexpr int ORBIS_GLS_ERROR_DISCONNECT_COMMAND_FROM_SERVER_N = 0x80a04104; // 2157986052 +constexpr int ORBIS_GLS_ERROR_END_TIME_IS_OVER_N = 0x80a04103; // 2157986051 +constexpr int ORBIS_GLS_ERROR_FB_NOT_SIGNIN = 0x80a00301; // 2157970177 +constexpr int ORBIS_GLS_ERROR_INVALID_ARG = 0x80a00106; // 2157969670 +constexpr int ORBIS_GLS_ERROR_INVALID_ID = 0x80a0010a; // 2157969674 +constexpr int ORBIS_GLS_ERROR_INVALID_POINTER = 0x80a00109; // 2157969673 +constexpr int ORBIS_GLS_ERROR_INVALID_SIZE = 0x80a00107; // 2157969671 +constexpr int ORBIS_GLS_ERROR_INVALID_STATUS = 0x80a0010b; // 2157969675 +constexpr int ORBIS_GLS_ERROR_INVALID_VALUE = 0x80a00108; // 2157969672 +constexpr int ORBIS_GLS_ERROR_IRC_COULD_NOT_CONNECT_SERVER_T = 0x80a03100; // 2157981952 +constexpr int ORBIS_GLS_ERROR_IRC_OTHER_T = 0x80a03101; // 2157981953 +constexpr int ORBIS_GLS_ERROR_NO_MSG = 0x80a00303; // 2157970179 +constexpr int ORBIS_GLS_ERROR_NOT_FOUND = 0x80a00103; // 2157969667 +constexpr int ORBIS_GLS_ERROR_NOT_IMPLEMENTED = 0x80a00104; // 2157969668 +constexpr int ORBIS_GLS_ERROR_NOT_INITIALIZED = 0x80a00105; // 2157969669 +constexpr int ORBIS_GLS_ERROR_NOT_SUPPORTED = 0x80a00102; // 2157969666 +constexpr int ORBIS_GLS_ERROR_NW_DISCONNECTED = 0x80a01003; // 2157973507 +constexpr int ORBIS_GLS_ERROR_NW_DISCONNECTED_N = 0x80a04003; // 2157985795 +constexpr int ORBIS_GLS_ERROR_NW_DISCONNECTED_T = 0x80a03003; // 2157981699 +constexpr int ORBIS_GLS_ERROR_NW_DISCONNECTED_U = 0x80a02003; // 2157977603 +constexpr int ORBIS_GLS_ERROR_NW_ECONNECT_SERVER = 0x80a01001; // 2157973505 +constexpr int ORBIS_GLS_ERROR_NW_ECONNECT_SERVER_N = 0x80a04001; // 2157985793 +constexpr int ORBIS_GLS_ERROR_NW_ECONNECT_SERVER_T = 0x80a03001; // 2157981697 +constexpr int ORBIS_GLS_ERROR_NW_ECONNECT_SERVER_U = 0x80a02001; // 2157977601 +constexpr int ORBIS_GLS_ERROR_NW_ENOCONNECT = 0x80a01002; // 2157973506 +constexpr int ORBIS_GLS_ERROR_NW_ENOCONNECT_N = 0x80a04002; // 2157985794 +constexpr int ORBIS_GLS_ERROR_NW_ENOCONNECT_T = 0x80a03002; // 2157981698 +constexpr int ORBIS_GLS_ERROR_NW_ENOCONNECT_U = 0x80a02002; // 2157977602 +constexpr int ORBIS_GLS_ERROR_NW_OTHER = 0x80a01004; // 2157973508 +constexpr int ORBIS_GLS_ERROR_NW_OTHER_N = 0x80a04004; // 2157985796 +constexpr int ORBIS_GLS_ERROR_NW_OTHER_T = 0x80a03004; // 2157981700 +constexpr int ORBIS_GLS_ERROR_NW_OTHER_U = 0x80a02004; // 2157977604 +constexpr int ORBIS_GLS_ERROR_NW_RESOLVER_ENOHOST = 0x80a01000; // 2157973504 +constexpr int ORBIS_GLS_ERROR_NW_RESOLVER_ENOHOST_N = 0x80a04000; // 2157985792 +constexpr int ORBIS_GLS_ERROR_NW_RESOLVER_ENOHOST_T = 0x80a03000; // 2157981696 +constexpr int ORBIS_GLS_ERROR_NW_RESOLVER_ENOHOST_U = 0x80a02000; // 2157977600 +constexpr int ORBIS_GLS_ERROR_OUT_OF_MEMORY = 0x80a00101; // 2157969665 +constexpr int ORBIS_GLS_ERROR_POST_LIMIT_EXCEEDED = 0x80a00304; // 2157970180 +constexpr int ORBIS_GLS_ERROR_PROGRAM_CLOSED_N = 0x80a04107; // 2157986055 +constexpr int ORBIS_GLS_ERROR_QUEUE_IS_NOT_AVAILABLE = 0x80a00112; // 2157969682 +constexpr int ORBIS_GLS_ERROR_REJECTED_FROM_UMS_AGELOCK_U = 0x80a02102; // 2157977858 +constexpr int ORBIS_GLS_ERROR_REJECTED_FROM_UMS_AUTH_U = 0x80a02104; // 2157977860 +constexpr int ORBIS_GLS_ERROR_REJECTED_FROM_UMS_GEOLOCK_U = 0x80a02100; // 2157977856 +constexpr int ORBIS_GLS_ERROR_REJECTED_FROM_UMS_IPLOCK_U = 0x80a02103; // 2157977859 +constexpr int ORBIS_GLS_ERROR_REJECTED_FROM_UMS_PASSLOCK_U = 0x80a02101; // 2157977857 +constexpr int ORBIS_GLS_ERROR_REJECTED_FROM_UMS_U = 0x80a02105; // 2157977861 +constexpr int ORBIS_GLS_ERROR_RTMP_AMF_ERROR = 0x80a01007; // 2157973511 +constexpr int ORBIS_GLS_ERROR_RTMP_AMF_ERROR_N = 0x80a04007; // 2157985799 +constexpr int ORBIS_GLS_ERROR_RTMP_AMF_ERROR_T = 0x80a03007; // 2157981703 +constexpr int ORBIS_GLS_ERROR_RTMP_AMF_ERROR_U = 0x80a02007; // 2157977607 +constexpr int ORBIS_GLS_ERROR_RTMP_BUFFER_OVERFLOW = 0x80a01009; // 2157973513 +constexpr int ORBIS_GLS_ERROR_RTMP_BUFFER_OVERFLOW_N = 0x80a04009; // 2157985801 +constexpr int ORBIS_GLS_ERROR_RTMP_BUFFER_OVERFLOW_T = 0x80a03009; // 2157981705 +constexpr int ORBIS_GLS_ERROR_RTMP_BUFFER_OVERFLOW_U = 0x80a02009; // 2157977609 +constexpr int ORBIS_GLS_ERROR_RTMP_HANDSHAKE_FAILED = 0x80a01006; // 2157973510 +constexpr int ORBIS_GLS_ERROR_RTMP_HANDSHAKE_FAILED_N = 0x80a04006; // 2157985798 +constexpr int ORBIS_GLS_ERROR_RTMP_HANDSHAKE_FAILED_T = 0x80a03006; // 2157981702 +constexpr int ORBIS_GLS_ERROR_RTMP_HANDSHAKE_FAILED_U = 0x80a02006; // 2157977606 +constexpr int ORBIS_GLS_ERROR_RTMP_HANDSHAKE_TIMEOUT = 0x80a01005; // 2157973509 +constexpr int ORBIS_GLS_ERROR_RTMP_HANDSHAKE_TIMEOUT_N = 0x80a04005; // 2157985797 +constexpr int ORBIS_GLS_ERROR_RTMP_HANDSHAKE_TIMEOUT_T = 0x80a03005; // 2157981701 +constexpr int ORBIS_GLS_ERROR_RTMP_HANDSHAKE_TIMEOUT_U = 0x80a02005; // 2157977605 +constexpr int ORBIS_GLS_ERROR_RTMP_NET_STATUS_CONNECT_FAILED = 0x80a0100c; // 2157973516 +constexpr int ORBIS_GLS_ERROR_RTMP_NET_STATUS_CONNECT_FAILED_N = 0x80a0400c; // 2157985804 +constexpr int ORBIS_GLS_ERROR_RTMP_NET_STATUS_CONNECT_FAILED_T = 0x80a0300c; // 2157981708 +constexpr int ORBIS_GLS_ERROR_RTMP_NET_STATUS_CONNECT_FAILED_U = 0x80a0200c; // 2157977612 +constexpr int ORBIS_GLS_ERROR_RTMP_NET_STATUS_CONNECT_REJECTED = 0x80a0100b; // 2157973515 +constexpr int ORBIS_GLS_ERROR_RTMP_NET_STATUS_CONNECT_REJECTED_N = 0x80a0400b; // 2157985803 +constexpr int ORBIS_GLS_ERROR_RTMP_NET_STATUS_CONNECT_REJECTED_T = 0x80a0300b; // 2157981707 +constexpr int ORBIS_GLS_ERROR_RTMP_NET_STATUS_CONNECT_REJECTED_U = 0x80a0200b; // 2157977611 +constexpr int ORBIS_GLS_ERROR_RTMP_OTHER = 0x80a0100a; // 2157973514 +constexpr int ORBIS_GLS_ERROR_RTMP_OTHER_N = 0x80a0400a; // 2157985802 +constexpr int ORBIS_GLS_ERROR_RTMP_OTHER_T = 0x80a0300a; // 2157981706 +constexpr int ORBIS_GLS_ERROR_RTMP_OTHER_U = 0x80a0200a; // 2157977610 +constexpr int ORBIS_GLS_ERROR_RTMP_STATUS_ERROR = 0x80a01008; // 2157973512 +constexpr int ORBIS_GLS_ERROR_RTMP_STATUS_ERROR_N = 0x80a04008; // 2157985800 +constexpr int ORBIS_GLS_ERROR_RTMP_STATUS_ERROR_T = 0x80a03008; // 2157981704 +constexpr int ORBIS_GLS_ERROR_RTMP_STATUS_ERROR_U = 0x80a02008; // 2157977608 +constexpr int ORBIS_GLS_ERROR_SERVER_BUSY_N = 0x80a04109; // 2157986057 +constexpr int ORBIS_GLS_ERROR_SERVER_FAILURE_N = 0x80a04105; // 2157986053 +constexpr int ORBIS_GLS_ERROR_SERVER_MAINTENANCE_N = 0x80a0410a; // 2157986058 +constexpr int ORBIS_GLS_ERROR_SERVER_OTHER_N = 0x80a04106; // 2157986054 +constexpr int ORBIS_GLS_ERROR_SNS_POST_FILED = 0x80a00305; // 2157970181 +constexpr int ORBIS_GLS_ERROR_SNS_POST_FILED_N = 0x80a00308; // 2157970184 +constexpr int ORBIS_GLS_ERROR_SNS_POST_FILED_T = 0x80a00307; // 2157970183 +constexpr int ORBIS_GLS_ERROR_SNS_POST_FILED_U = 0x80a00306; // 2157970182 +constexpr int ORBIS_GLS_ERROR_SNS_POST_IN_ANONYMOUSE_T = 0x80a00309; // 2157970185 +constexpr int ORBIS_GLS_ERROR_THREAD = 0x80a0010d; // 2157969677 +constexpr int ORBIS_GLS_ERROR_TIME_OUT = 0x80a0010e; // 2157969678 +constexpr int ORBIS_GLS_ERROR_TW_NOT_SIGNIN = 0x80a00302; // 2157970178 +constexpr int ORBIS_GLS_ERROR_UNKNOWN_BE_ERROR = 0x80a00201; // 2157969921 +constexpr int ORBIS_GLS_ERROR_UNKNOWN_BE_NOTIFY = 0x80a00203; // 2157969923 +constexpr int ORBIS_GLS_ERROR_WRITE = 0x80a00111; // 2157969681 + +// GV_MP4 +constexpr int ORBIS_GV_MP4_PARSER_ERROR_FATAL = 0x809d4201; // 2157789697 +constexpr int ORBIS_GV_MP4_PARSER_ERROR_FILE_NOT_OPEN = 0x809d4208; // 2157789704 +constexpr int ORBIS_GV_MP4_PARSER_ERROR_FS_OP = 0x809d4207; // 2157789703 +constexpr int ORBIS_GV_MP4_PARSER_ERROR_GEN_CANCELED = 0x809d4206; // 2157789702 +constexpr int ORBIS_GV_MP4_PARSER_ERROR_GEN_SKIPPED = 0x809d420a; // 2157789706 +constexpr int ORBIS_GV_MP4_PARSER_ERROR_INVALID_ARGUMENT = 0x809d4200; // 2157789696 +constexpr int ORBIS_GV_MP4_PARSER_ERROR_INVALID_FILE = 0x809d4209; // 2157789705 +constexpr int ORBIS_GV_MP4_PARSER_ERROR_INVALID_OPERATION = 0x809d420b; // 2157789707 +constexpr int ORBIS_GV_MP4_PARSER_ERROR_NO_EXIST = 0x809d4202; // 2157789698 +constexpr int ORBIS_GV_MP4_PARSER_ERROR_NO_ITEMS = 0x809d4205; // 2157789701 +constexpr int ORBIS_GV_MP4_PARSER_ERROR_NO_MEMORY = 0x809d4204; // 2157789700 +constexpr int ORBIS_GV_MP4_PARSER_ERROR_NOT_EXIST_FILE = 0x809d4203; // 2157789699 + +// HDD_FORMATTER +constexpr int ORBIS_HDD_FORMATTER_ERROR_GENERAL = 0x80c21000; // 2160201728 +constexpr int ORBIS_HDD_FORMATTER_ERROR_GEOM_BUSY = 0x80c21102; // 2160201986 +constexpr int ORBIS_HDD_FORMATTER_ERROR_GEOM_EXIST = 0x80c21103; // 2160201987 +constexpr int ORBIS_HDD_FORMATTER_ERROR_GEOM_INVAL = 0x80c21100; // 2160201984 +constexpr int ORBIS_HDD_FORMATTER_ERROR_GEOM_NOENT = 0x80c21101; // 2160201985 +constexpr int ORBIS_HDD_FORMATTER_ERROR_INVAL = 0x80c21001; // 2160201729 +constexpr int ORBIS_HDD_FORMATTER_ERROR_IO = 0x80c21003; // 2160201731 +constexpr int ORBIS_HDD_FORMATTER_ERROR_NOMEM = 0x80c21002; // 2160201730 +constexpr int ORBIS_HDD_FORMATTER_ERROR_NOT_SUPPORTED = 0x80c21004; // 2160201732 + +// IME_DIALOG +constexpr int ORBIS_IME_DIALOG_ERROR_INVALID_TITLE = 0x80bc0101; // 2159804673 +constexpr int ORBIS_IME_DIALOG_ERROR_NOT_FINISHED = 0x80bc0106; // 2159804678 +constexpr int ORBIS_IME_DIALOG_ERROR_NOT_IN_USE = 0x80bc0107; // 2159804679 +constexpr int ORBIS_IME_DIALOG_ERROR_NOT_RUNNING = 0x80bc0105; // 2159804677 +constexpr int ORBIS_IME_ERROR_BUSY = 0x80bc0001; // 2159804417 +constexpr int ORBIS_IME_ERROR_CONNECTION_FAILED = 0x80bc0004; // 2159804420 +constexpr int ORBIS_IME_ERROR_DEVICE_IN_USE = 0x80bc000a; // 2159804426 +constexpr int ORBIS_IME_ERROR_EVENT_OVERFLOW = 0x80bc0007; // 2159804423 +constexpr int ORBIS_IME_ERROR_IME_SUSPENDING = 0x80bc0009; // 2159804425 +constexpr int ORBIS_IME_ERROR_INTERNAL = 0x80bc00ff; // 2159804671 +constexpr int ORBIS_IME_ERROR_INVALID_ADDRESS = 0x80bc0031; // 2159804465 +constexpr int ORBIS_IME_ERROR_INVALID_ARG = 0x80bc0021; // 2159804449 +constexpr int ORBIS_IME_ERROR_INVALID_ENTER_LABEL = 0x80bc0013; // 2159804435 +constexpr int ORBIS_IME_ERROR_INVALID_EXTENDED = 0x80bc001c; // 2159804444 +constexpr int ORBIS_IME_ERROR_INVALID_HANDLER = 0x80bc0022; // 2159804450 +constexpr int ORBIS_IME_ERROR_INVALID_HORIZONTALIGNMENT = 0x80bc001a; // 2159804442 +constexpr int ORBIS_IME_ERROR_INVALID_INPUT_METHOD = 0x80bc0014; // 2159804436 +constexpr int ORBIS_IME_ERROR_INVALID_INPUT_TEXT_BUFFER = 0x80bc0017; // 2159804439 +constexpr int ORBIS_IME_ERROR_INVALID_KEYBOARD_TYPE = 0x80bc001d; // 2159804445 +constexpr int ORBIS_IME_ERROR_INVALID_MAX_TEXT_LENGTH = 0x80bc0016; // 2159804438 +constexpr int ORBIS_IME_ERROR_INVALID_MODE = 0x80bc0024; // 2159804452 +constexpr int ORBIS_IME_ERROR_INVALID_OPTION = 0x80bc0015; // 2159804437 +constexpr int ORBIS_IME_ERROR_INVALID_PARAM = 0x80bc0030; // 2159804464 +constexpr int ORBIS_IME_ERROR_INVALID_POSX = 0x80bc0018; // 2159804440 +constexpr int ORBIS_IME_ERROR_INVALID_POSY = 0x80bc0019; // 2159804441 +constexpr int ORBIS_IME_ERROR_INVALID_RESERVED = 0x80bc0032; // 2159804466 +constexpr int ORBIS_IME_ERROR_INVALID_SUPPORTED_LANGUAGES = 0x80bc0012; // 2159804434 +constexpr int ORBIS_IME_ERROR_INVALID_TEXT = 0x80bc0006; // 2159804422 +constexpr int ORBIS_IME_ERROR_INVALID_TIMING = 0x80bc0033; // 2159804467 +constexpr int ORBIS_IME_ERROR_INVALID_TYPE = 0x80bc0011; // 2159804433 +constexpr int ORBIS_IME_ERROR_INVALID_USER_ID = 0x80bc0010; // 2159804432 +constexpr int ORBIS_IME_ERROR_INVALID_VERTICALALIGNMENT = 0x80bc001b; // 2159804443 +constexpr int ORBIS_IME_ERROR_INVALID_WORK = 0x80bc0020; // 2159804448 +constexpr int ORBIS_IME_ERROR_NO_MEMORY = 0x80bc0003; // 2159804419 +constexpr int ORBIS_IME_ERROR_NO_RESOURCE_ID = 0x80bc0023; // 2159804451 +constexpr int ORBIS_IME_ERROR_NOT_ACTIVE = 0x80bc0008; // 2159804424 +constexpr int ORBIS_IME_ERROR_NOT_OPENED = 0x80bc0002; // 2159804418 +constexpr int ORBIS_IME_ERROR_TOO_MANY_REQUESTS = 0x80bc0005; // 2159804421 + +// INIFILE +constexpr int ORBIS_INIFILE_ERROR_BUFFER_TOO_SMALL = 0x80840008; // 2156134408 +constexpr int ORBIS_INIFILE_ERROR_EMPTY_FILE = 0x80840005; // 2156134405 +constexpr int ORBIS_INIFILE_ERROR_FILE_NOT_FOUND = 0x80840009; // 2156134409 +constexpr int ORBIS_INIFILE_ERROR_FILE_NOT_OPENED = 0x80840014; // 2156134420 +constexpr int ORBIS_INIFILE_ERROR_FILE_READ_FAILED = 0x8084000c; // 2156134412 +constexpr int ORBIS_INIFILE_ERROR_FILE_READ_OPEN_FAILED = 0x8084000a; // 2156134410 +constexpr int ORBIS_INIFILE_ERROR_FILE_WRITE_FAILED = 0x8084000d; // 2156134413 +constexpr int ORBIS_INIFILE_ERROR_FILE_WRITE_OPEN_FAILED = 0x8084000b; // 2156134411 +constexpr int ORBIS_INIFILE_ERROR_GENERIC = 0x80840000; // 2156134400 +constexpr int ORBIS_INIFILE_ERROR_INITIALIZE_FAILED = 0x80840003; // 2156134403 +constexpr int ORBIS_INIFILE_ERROR_INTERNAL_ERROR = 0x80840013; // 2156134419 +constexpr int ORBIS_INIFILE_ERROR_INVALID_ARGUMEN = 0x80840006; // 2156134406 +constexpr int ORBIS_INIFILE_ERROR_INVALID_FILE = 0x80840004; // 2156134404 +constexpr int ORBIS_INIFILE_ERROR_INVALID_KEY = 0x8084000e; // 2156134414 +constexpr int ORBIS_INIFILE_ERROR_INVALID_OPERATION = 0x80840007; // 2156134407 +constexpr int ORBIS_INIFILE_ERROR_INVALID_START_POSITION = 0x8084000f; // 2156134415 +constexpr int ORBIS_INIFILE_ERROR_KEY_NOT_FOUND = 0x80840010; // 2156134416 +constexpr int ORBIS_INIFILE_ERROR_NO_MEMORY = 0x80840001; // 2156134401 +constexpr int ORBIS_INIFILE_ERROR_NOT_IMPLEMENTED = 0x80840012; // 2156134418 +constexpr int ORBIS_INIFILE_ERROR_NOT_INITIALIZED = 0x80840002; // 2156134402 +constexpr int ORBIS_INIFILE_ERROR_VALUE_EXCEEDS_BUFFER_LENGTH = 0x80840011; // 2156134417 + +// INVITATION_DIALOG +constexpr int ORBIS_INVITATION_DIALOG_ERROR_BLOCKED_ALL_PLAYERS = 0x810a0001; // 2164916225 + +// JSEX +constexpr int ORBIS_JSEX_ERROR_BUSY = 0x80fb0006; // 2163933190 +constexpr int ORBIS_JSEX_ERROR_DECRIPT_FAIL = 0x80fb0005; // 2163933189 +constexpr int ORBIS_JSEX_ERROR_INVALID_JSON_STRING = 0x80fb0003; // 2163933187 +constexpr int ORBIS_JSEX_ERROR_INVALID_PARAM = 0x80fb0001; // 2163933185 +constexpr int ORBIS_JSEX_ERROR_INVALID_SCENE = 0x80fb0004; // 2163933188 +constexpr int ORBIS_JSEX_ERROR_PAGE_NOT_FOUND = 0x80fb0002; // 2163933186 + +// LNC +constexpr int ORBIS_LNC_UTIL_ERROR_ALREADY_INITIALIZED = 0x80940018; // 2157183000 +constexpr int ORBIS_LNC_UTIL_ERROR_ALREADY_RUNNING = 0x8094000c; // 2157182988 +constexpr int ORBIS_LNC_UTIL_ERROR_ALREADY_RUNNING_KILL_NEEDED = 0x80940010; // 2157182992 +constexpr int ORBIS_LNC_UTIL_ERROR_ALREADY_RUNNING_SUSPEND_NEEDED = 0x80940011; // 2157182993 +constexpr int ORBIS_LNC_UTIL_ERROR_APP_ALREADY_RESUMED = 0x8094001e; // 2157183006 +constexpr int ORBIS_LNC_UTIL_ERROR_APP_ALREADY_SUSPENDED = 0x8094001d; // 2157183005 +constexpr int ORBIS_LNC_UTIL_ERROR_APP_NOT_IN_BACKGROUND = 0x80940015; // 2157182997 +constexpr int ORBIS_LNC_UTIL_ERROR_APPHOME_EBOOTBIN_NOT_FOUND = 0x80940008; // 2157182984 +constexpr int ORBIS_LNC_UTIL_ERROR_APPHOME_PARAMSFO_NOT_FOUND = 0x80940009; // 2157182985 +constexpr int ORBIS_LNC_UTIL_ERROR_CANNOT_RESUME_INITIAL_USER_NEEDED = 0x80940012; // 2157182994 +constexpr int ORBIS_LNC_UTIL_ERROR_DEVKIT_EXPIRED = 0x8094000b; // 2157182987 +constexpr int ORBIS_LNC_UTIL_ERROR_IN_LOGOUT_PROCESSING = 0x8094001a; // 2157183002 +constexpr int ORBIS_LNC_UTIL_ERROR_IN_SPECIAL_RESUME = 0x8094001b; // 2157183003 +constexpr int ORBIS_LNC_UTIL_ERROR_INVALID_PARAM = 0x80940005; // 2157182981 +constexpr int ORBIS_LNC_UTIL_ERROR_INVALID_STATE = 0x80940019; // 2157183001 +constexpr int ORBIS_LNC_UTIL_ERROR_INVALID_TITLE_ID = 0x8094001c; // 2157183004 +constexpr int ORBIS_LNC_UTIL_ERROR_LAUNCH_DISABLED_BY_MEMORY_MODE = 0x8094000d; // 2157182989 +constexpr int ORBIS_LNC_UTIL_ERROR_NO_APP_INFO = 0x80940004; // 2157182980 +constexpr int ORBIS_LNC_UTIL_ERROR_NO_LOGIN_USER = 0x8094000a; // 2157182986 +constexpr int ORBIS_LNC_UTIL_ERROR_NO_SESSION_MEMORY = 0x80940002; // 2157182978 +constexpr int ORBIS_LNC_UTIL_ERROR_NO_SFOKEY_IN_APP_INFO = 0x80940014; // 2157182996 +constexpr int ORBIS_LNC_UTIL_ERROR_NO_SHELL_UI = 0x8094000e; // 2157182990 +constexpr int ORBIS_LNC_UTIL_ERROR_NOT_ALLOWED = 0x8094000f; // 2157182991 +constexpr int ORBIS_LNC_UTIL_ERROR_NOT_INITIALIZED = 0x80940001; // 2157182977 +constexpr int ORBIS_LNC_UTIL_ERROR_OPTICAL_DISC_DRIVE = 0x80940013; // 2157182995 +constexpr int ORBIS_LNC_UTIL_ERROR_SETUP_FS_SANDBOX = 0x80940006; // 2157182982 +constexpr int ORBIS_LNC_UTIL_ERROR_SUSPEND_BLOCK_TIMEOUT = 0x80940017; // 2157182999 +constexpr int ORBIS_LNC_UTIL_ERROR_VIDEOOUT_NOT_SUPPORTED = 0x80940016; // 2157182998 +constexpr int ORBIS_LNC_UTIL_ERROR_WAITING_READY_FOR_SUSPEND_TIMEOUT = 0x80940021; // 2157183009 + +// LOGIN_MGR +constexpr int ORBIS_LOGIN_MGR_ERROR_ALL_USER_LOGINED = 0x80b6000b; // 2159411211 +constexpr int ORBIS_LOGIN_MGR_ERROR_ALLREADY_INITIALIZED = 0x80b60002; // 2159411202 +constexpr int ORBIS_LOGIN_MGR_ERROR_CAN_NOT_USE_PSN_ON_IDU = 0x80b60013; // 2159411219 +constexpr int ORBIS_LOGIN_MGR_ERROR_CERTIFICATE_VERIFICATION_FAILED = 0x80b68004; // 2159443972 +constexpr int ORBIS_LOGIN_MGR_ERROR_CREATE_USER_FAILED = 0x80b6000c; // 2159411212 +constexpr int ORBIS_LOGIN_MGR_ERROR_EVENTFLAG_ALLREADY_INITIALIZED = 0x80b60006; // 2159411206 +constexpr int ORBIS_LOGIN_MGR_ERROR_EVENTFLAG_NOT_INITIALIZED = 0x80b60007; // 2159411207 +constexpr int ORBIS_LOGIN_MGR_ERROR_INTERNAL = 0x80b6000f; // 2159411215 +constexpr int ORBIS_LOGIN_MGR_ERROR_INVALID_ARGUMENT = 0x80b60003; // 2159411203 +constexpr int ORBIS_LOGIN_MGR_ERROR_LOGIN_PROCESS_RUNNING = 0x80b6000d; // 2159411213 +constexpr int ORBIS_LOGIN_MGR_ERROR_LOGOUT_BY_MULTIPLE_SIGNIN = 0x80b60014; // 2159411220 +constexpr int ORBIS_LOGIN_MGR_ERROR_LOGOUT_BY_TROPHY_DATA_INSTALL_FAILURE = + 0x80b60015; // 2159411221 +constexpr int ORBIS_LOGIN_MGR_ERROR_MUTEX_NOT_INITIALIZED = 0x80b60008; // 2159411208 +constexpr int ORBIS_LOGIN_MGR_ERROR_NAVIGATION_CONFIRM_FIALED = 0x80b68003; // 2159443971 +constexpr int ORBIS_LOGIN_MGR_ERROR_NETWORK_DISABLED = 0x80b60011; // 2159411217 +constexpr int ORBIS_LOGIN_MGR_ERROR_NO_DEVICE_ID = 0x80b6000e; // 2159411214 +constexpr int ORBIS_LOGIN_MGR_ERROR_NO_DEVICE_INFO = 0x80b60009; // 2159411209 +constexpr int ORBIS_LOGIN_MGR_ERROR_NO_MEMORY = 0x80b60004; // 2159411204 +constexpr int ORBIS_LOGIN_MGR_ERROR_NOT_INITIALIZED = 0x80b60001; // 2159411201 +constexpr int ORBIS_LOGIN_MGR_ERROR_OVER_DEVICE_INFO = 0x80b6000a; // 2159411210 +constexpr int ORBIS_LOGIN_MGR_ERROR_REGCAM_SERVER_ERROR = 0x80b68005; // 2159443973 +constexpr int ORBIS_LOGIN_MGR_ERROR_SYSTEM_UPDATE_CHECK_FAILED = 0x80b60012; // 2159411218 +constexpr int ORBIS_LOGIN_MGR_ERROR_THREAD_ALLREADY_STARTED = 0x80b60005; // 2159411205 +constexpr int ORBIS_LOGIN_MGR_ERROR_USER_ALREADY_EXISTS = 0x80b60010; // 2159411216 +constexpr int ORBIS_LOGIN_MGR_ERROR_WEBCORE_CRASH = 0x80b68002; // 2159443970 +constexpr int ORBIS_LOGIN_MGR_ERROR_WEBCORE_UNRESPONSIVE = 0x80b68001; // 2159443969 +constexpr int ORBIS_LOGIN_MGR_UTILITY_ERROR_ALLREADY_INITIALIZED = 0x80b6a002; // 2159452162 +constexpr int ORBIS_LOGIN_MGR_UTILITY_ERROR_INTERNAL = 0x80b6a008; // 2159452168 +constexpr int ORBIS_LOGIN_MGR_UTILITY_ERROR_INVALID_ARGUMENT = 0x80b6a003; // 2159452163 +constexpr int ORBIS_LOGIN_MGR_UTILITY_ERROR_INVALID_USER = 0x80b6a005; // 2159452165 +constexpr int ORBIS_LOGIN_MGR_UTILITY_ERROR_LOGOUT_BUSY = 0x80b6a007; // 2159452167 +constexpr int ORBIS_LOGIN_MGR_UTILITY_ERROR_NO_MEMORY = 0x80b6a004; // 2159452164 +constexpr int ORBIS_LOGIN_MGR_UTILITY_ERROR_NOT_INITIALIZED = 0x80b6a001; // 2159452161 +constexpr int ORBIS_LOGIN_MGR_UTILITY_ERROR_USER_NOT_LOGIN = 0x80b6a006; // 2159452166 + +// LSDB +constexpr int ORBIS_LSDB_ERROR_ACTIVITY = 0x80f50020; // 2163540000 +constexpr int ORBIS_LSDB_ERROR_ACTIVITY_ALREADY_CANCELED = 0x80f50022; // 2163540002 +constexpr int ORBIS_LSDB_ERROR_ACTIVITY_GET_INFO = 0x80f50027; // 2163540007 +constexpr int ORBIS_LSDB_ERROR_ACTIVITY_GET_NETWORK_TIME = 0x80f50025; // 2163540005 +constexpr int ORBIS_LSDB_ERROR_ACTIVITY_INVALID_MESSAGE = 0x80f50026; // 2163540006 +constexpr int ORBIS_LSDB_ERROR_ACTIVITY_INVALID_PARAM = 0x80f50021; // 2163540001 +constexpr int ORBIS_LSDB_ERROR_ACTIVITY_NOT_INITIALIZED = 0x80f50023; // 2163540003 +constexpr int ORBIS_LSDB_ERROR_ACTIVITY_STATUS_DESTROYED = 0x80f50028; // 2163540008 +constexpr int ORBIS_LSDB_ERROR_ACTIVITY_SYNC_TIMEOUT = 0x80f50024; // 2163540004 +constexpr int ORBIS_LSDB_ERROR_BUSY = 0x80f50012; // 2163539986 +constexpr int ORBIS_LSDB_ERROR_DB_APPBROWSE_SCHEMA = 0x80f50046; // 2163540038 +constexpr int ORBIS_LSDB_ERROR_DB_APPINFO_SCHEMA = 0x80f50045; // 2163540037 +constexpr int ORBIS_LSDB_ERROR_DB_CLEARED = 0x80f50041; // 2163540033 +constexpr int ORBIS_LSDB_ERROR_DB_CORRUPT = 0x80f50061; // 2163540065 +constexpr int ORBIS_LSDB_ERROR_DB_EMPTY = 0x80f50044; // 2163540036 +constexpr int ORBIS_LSDB_ERROR_DB_LOCALE = 0x80f50040; // 2163540032 +constexpr int ORBIS_LSDB_ERROR_DB_LOCALE_AND_VERSION = 0x80f50063; // 2163540067 +constexpr int ORBIS_LSDB_ERROR_DB_NOT_ENABLED = 0x80f50064; // 2163540068 +constexpr int ORBIS_LSDB_ERROR_DB_RECOVERING = 0x80f50065; // 2163540069 +constexpr int ORBIS_LSDB_ERROR_DB_SAFEMODE = 0x80f50060; // 2163540064 +constexpr int ORBIS_LSDB_ERROR_DB_SCHEMA = 0x80f50042; // 2163540034 +constexpr int ORBIS_LSDB_ERROR_DB_SCHEMA_AND_VERSION = 0x80f50062; // 2163540066 +constexpr int ORBIS_LSDB_ERROR_DB_VERSION = 0x80f50043; // 2163540035 +constexpr int ORBIS_LSDB_ERROR_EXIST = 0x80f50004; // 2163539972 +constexpr int ORBIS_LSDB_ERROR_FATAL = 0x80f50000; // 2163539968 +constexpr int ORBIS_LSDB_ERROR_INVALID_ARG = 0x80f50001; // 2163539969 +constexpr int ORBIS_LSDB_ERROR_INVALID_INDEX = 0x80f5000b; // 2163539979 +constexpr int ORBIS_LSDB_ERROR_INVALID_KEY = 0x80f50011; // 2163539985 +constexpr int ORBIS_LSDB_ERROR_INVALID_LAYOUT = 0x80f5000c; // 2163539980 +constexpr int ORBIS_LSDB_ERROR_INVALID_OP = 0x80f50007; // 2163539975 +constexpr int ORBIS_LSDB_ERROR_LIMIT = 0x80f50006; // 2163539974 +constexpr int ORBIS_LSDB_ERROR_NO_COMMENT_ID = 0x80f5000f; // 2163539983 +constexpr int ORBIS_LSDB_ERROR_NO_EVENT_ID = 0x80f50008; // 2163539976 +constexpr int ORBIS_LSDB_ERROR_NO_MEMORY = 0x80f50002; // 2163539970 +constexpr int ORBIS_LSDB_ERROR_NO_ONLINE_ID = 0x80f5000e; // 2163539982 +constexpr int ORBIS_LSDB_ERROR_NO_ROW_ID = 0x80f5000d; // 2163539981 +constexpr int ORBIS_LSDB_ERROR_NO_TIME = 0x80f50010; // 2163539984 +constexpr int ORBIS_LSDB_ERROR_NO_TITLE_ID = 0x80f50009; // 2163539977 +constexpr int ORBIS_LSDB_ERROR_NO_TYPE = 0x80f5000a; // 2163539978 +constexpr int ORBIS_LSDB_ERROR_NOT_FOUND = 0x80f50005; // 2163539973 +constexpr int ORBIS_LSDB_ERROR_NOT_SUPPORTED = 0x80f50013; // 2163539987 +constexpr int ORBIS_LSDB_ERROR_STATE = 0x80f50003; // 2163539971 + +// MDRW +constexpr int ORBIS_MDRW_ERROR_AGAIN = 0x809d4003; // 2157789187 +constexpr int ORBIS_MDRW_ERROR_BROKEN_FILE = 0x809d4012; // 2157789202 +constexpr int ORBIS_MDRW_ERROR_BUSY = 0x809d4004; // 2157789188 +constexpr int ORBIS_MDRW_ERROR_INVAL = 0x809d4002; // 2157789186 +constexpr int ORBIS_MDRW_ERROR_NO_ENTRY = 0x809d4006; // 2157789190 +constexpr int ORBIS_MDRW_ERROR_NOMEM = 0x809d4001; // 2157789185 +constexpr int ORBIS_MDRW_ERROR_NOT_SUPPORT = 0x809d4005; // 2157789189 +constexpr int ORBIS_MDRW_ERROR_WRONG_STATUS = 0x809d4011; // 2157789201 + +// MESSAGES +constexpr int ORBIS_MESSAGES_ATTACHMENT_DB_ERROR_FATAL = 0x80e60016; // 2162556950 +constexpr int ORBIS_MESSAGES_BG_ERROR_CACHE_ONLY_SUCCESS = 0x80e50003; // 2162491395 +constexpr int ORBIS_MESSAGES_BG_ERROR_CANCELED = 0x80e50002; // 2162491394 +constexpr int ORBIS_MESSAGES_BG_ERROR_FATAL_DB_ERROR = 0x80e50014; // 2162491412 +constexpr int ORBIS_MESSAGES_BG_ERROR_FILE_IO_ERROR = 0x80e50017; // 2162491415 +constexpr int ORBIS_MESSAGES_BG_ERROR_FILE_NOT_FOUND = 0x80e50012; // 2162491410 +constexpr int ORBIS_MESSAGES_BG_ERROR_INTERNAL = 0x80e50010; // 2162491408 +constexpr int ORBIS_MESSAGES_BG_ERROR_INVALID_PARAMETER = 0x80e50011; // 2162491409 +constexpr int ORBIS_MESSAGES_BG_ERROR_MEMORY_ERROR = 0x80e50013; // 2162491411 +constexpr int ORBIS_MESSAGES_BG_ERROR_NETWORK = 0x80e50110; // 2162491664 +constexpr int ORBIS_MESSAGES_BG_ERROR_NETWORK_BAD_REQUEST = 0x80e50113; // 2162491667 +constexpr int ORBIS_MESSAGES_BG_ERROR_NETWORK_BLOCKING_USER = 0x80e50118; // 2162491672 +constexpr int ORBIS_MESSAGES_BG_ERROR_NETWORK_FORBIDDEN = 0x80e50116; // 2162491670 +constexpr int ORBIS_MESSAGES_BG_ERROR_NETWORK_ILLEGAL_RESPONSE = 0x80e50115; // 2162491669 +constexpr int ORBIS_MESSAGES_BG_ERROR_NETWORK_MAINTENANCE = 0x80e50117; // 2162491671 +constexpr int ORBIS_MESSAGES_BG_ERROR_NETWORK_REACH_THE_LIMIT = 0x80e50119; // 2162491673 +constexpr int ORBIS_MESSAGES_BG_ERROR_NETWORK_REQUEST_TIMEOUT = 0x80e50111; // 2162491665 +constexpr int ORBIS_MESSAGES_BG_ERROR_NETWORK_RESPONSE_TIMEOUT = 0x80e50114; // 2162491668 +constexpr int ORBIS_MESSAGES_BG_ERROR_NETWORK_SERVER_INTERNAL_ERROR = 0x80e50112; // 2162491666 +constexpr int ORBIS_MESSAGES_BG_ERROR_NOT_INITIALIZED = 0x80e50016; // 2162491414 +constexpr int ORBIS_MESSAGES_BG_ERROR_NOTSIGNIN = 0x80e50015; // 2162491413 +constexpr int ORBIS_MESSAGES_BG_ERROR_OHTERS_MODULE = 0x80e5ffff; // 2162556927 +constexpr int ORBIS_MESSAGES_BG_ERROR_PROGRESS = 0x80e50001; // 2162491393 +constexpr int ORBIS_MESSAGES_BG_ERROR_REGISTORY = 0x80e50018; // 2162491416 +constexpr int ORBIS_MESSAGES_CORE_ERROR_ALREADY_EXIST = 0x80fe0003; // 2164129795 +constexpr int ORBIS_MESSAGES_CORE_ERROR_INTERNAL = 0x80fe0001; // 2164129793 +constexpr int ORBIS_MESSAGES_CORE_ERROR_MEMORY_ERROR = 0x80fe0002; // 2164129794 +constexpr int ORBIS_MESSAGES_DB_ERROR_FATAL = 0x80e60014; // 2162556948 +constexpr int ORBIS_MESSAGES_DB_ERROR_FILE_NOT_FOUND = 0x80e60011; // 2162556945 +constexpr int ORBIS_MESSAGES_DB_ERROR_INTERNAL = 0x80e60013; // 2162556947 +constexpr int ORBIS_MESSAGES_DB_ERROR_INVALID_ARGUMENT = 0x80e60012; // 2162556946 +constexpr int ORBIS_MESSAGES_DB_ERROR_NOT_INITIALIZED = 0x80e60010; // 2162556944 +constexpr int ORBIS_MESSAGES_DB_ERROR_OUT_OF_MEMORY = 0x80e60017; // 2162556951 +constexpr int ORBIS_MESSAGES_ERROR_ADD_PLAYER = 0x80f60203; // 2163606019 +constexpr int ORBIS_MESSAGES_ERROR_ALL_BLOCKED = 0x80f6020b; // 2163606027 +constexpr int ORBIS_MESSAGES_ERROR_CHANGE_TITLE = 0x80f60202; // 2163606018 +constexpr int ORBIS_MESSAGES_ERROR_DB_CORRUPTED = 0x80f60208; // 2163606024 +constexpr int ORBIS_MESSAGES_ERROR_DELETE_MESSAGE = 0x80f60206; // 2163606022 +constexpr int ORBIS_MESSAGES_ERROR_FILE_CORRUPTED = 0x80f61104; // 2163609860 +constexpr int ORBIS_MESSAGES_ERROR_FILE_IO = 0x80f61101; // 2163609857 +constexpr int ORBIS_MESSAGES_ERROR_FILE_SIZE = 0x80f61102; // 2163609858 +constexpr int ORBIS_MESSAGES_ERROR_FILE_UNSUPPORT = 0x80f61103; // 2163609859 +constexpr int ORBIS_MESSAGES_ERROR_GENERAL = 0x80f60101; // 2163605761 +constexpr int ORBIS_MESSAGES_ERROR_INITIALIZE = 0x80f69001; // 2163642369 +constexpr int ORBIS_MESSAGES_ERROR_INVALID_PARAM = 0x80f69003; // 2163642371 +constexpr int ORBIS_MESSAGES_ERROR_MAX_MEMBERS = 0x80f60207; // 2163606023 +constexpr int ORBIS_MESSAGES_ERROR_NETWORK = 0x80f61201; // 2163610113 +constexpr int ORBIS_MESSAGES_ERROR_NO_MICROPHONE = 0x80f60204; // 2163606020 +constexpr int ORBIS_MESSAGES_ERROR_OUT_OF_MEMORY = 0x80f69002; // 2163642370 +constexpr int ORBIS_MESSAGES_ERROR_PSCAMERA_MUTE = 0x80f60209; // 2163606025 +constexpr int ORBIS_MESSAGES_ERROR_PSN = 0x80f61202; // 2163610114 +constexpr int ORBIS_MESSAGES_ERROR_RECORD_VOICE = 0x80f60205; // 2163606021 +constexpr int ORBIS_MESSAGES_ERROR_SEND_MESSAGE = 0x80f60201; // 2163606017 +constexpr int ORBIS_MESSAGES_ERROR_STORE_LINK = 0x80f6020a; // 2163606026 +constexpr int ORBIS_MESSAGES_MESSAGES_DB_ERROR_FATAL = 0x80e60015; // 2162556949 + +// METAGEN +constexpr int ORBIS_METAGEN_ERROR_ADD_PROMOTER = 0x809d402b; // 2157789227 +constexpr int ORBIS_METAGEN_ERROR_ALREADY_EXIST = 0x809d4015; // 2157789205 +constexpr int ORBIS_METAGEN_ERROR_CANNOT_ACCESS_DB = 0x809d4016; // 2157789206 +constexpr int ORBIS_METAGEN_ERROR_CANNOT_EXPLICIT_TRANSACTION = 0x809d4037; // 2157789239 +constexpr int ORBIS_METAGEN_ERROR_CANNOT_USE_TRANSACTION = 0x809d4026; // 2157789222 +constexpr int ORBIS_METAGEN_ERROR_FATAL_ERROR = 0x809d4014; // 2157789204 +constexpr int ORBIS_METAGEN_ERROR_FILE_NOT_OPEN = 0x809d4034; // 2157789236 +constexpr int ORBIS_METAGEN_ERROR_FILE_OPEN = 0x809d4035; // 2157789237 +constexpr int ORBIS_METAGEN_ERROR_FS_OP = 0x809d4033; // 2157789235 +constexpr int ORBIS_METAGEN_ERROR_FULL_TARGET_AREA = 0x809d403e; // 2157789246 +constexpr int ORBIS_METAGEN_ERROR_GEN_CANCELED = 0x809d4032; // 2157789234 +constexpr int ORBIS_METAGEN_ERROR_GEN_SKIPPED = 0x809d403c; // 2157789244 +constexpr int ORBIS_METAGEN_ERROR_GET_DIR_ENT = 0x809d402d; // 2157789229 +constexpr int ORBIS_METAGEN_ERROR_INVALID_ARGUMENT = 0x809d4013; // 2157789203 +constexpr int ORBIS_METAGEN_ERROR_INVALID_DB_RESOURCE = 0x809d4017; // 2157789207 +constexpr int ORBIS_METAGEN_ERROR_INVALID_FILE = 0x809d4038; // 2157789240 +constexpr int ORBIS_METAGEN_ERROR_INVALID_FILE_NAME = 0x809d403d; // 2157789245 +constexpr int ORBIS_METAGEN_ERROR_INVALID_HANDLE = 0x809d4018; // 2157789208 +constexpr int ORBIS_METAGEN_ERROR_INVALID_PROMOTE_INFORMATION = 0x809d402e; // 2157789230 +constexpr int ORBIS_METAGEN_ERROR_LONG_NAME = 0x809d402f; // 2157789231 +constexpr int ORBIS_METAGEN_ERROR_NO_COMMIT_OPERATION = 0x809d4027; // 2157789223 +constexpr int ORBIS_METAGEN_ERROR_NO_CORRESPONDED_PROMOTER = 0x809d4039; // 2157789241 +constexpr int ORBIS_METAGEN_ERROR_NO_EXIST = 0x809d4019; // 2157789209 +constexpr int ORBIS_METAGEN_ERROR_NO_HANDLER = 0x809d402a; // 2157789226 +constexpr int ORBIS_METAGEN_ERROR_NO_ITEMS = 0x809d4031; // 2157789233 +constexpr int ORBIS_METAGEN_ERROR_NO_MEMORY = 0x809d4029; // 2157789225 +constexpr int ORBIS_METAGEN_ERROR_NO_PRX = 0x809d403a; // 2157789242 +constexpr int ORBIS_METAGEN_ERROR_NOT_DB_OPENED = 0x809d401a; // 2157789210 +constexpr int ORBIS_METAGEN_ERROR_NOT_EXIST_DB_FIELD = 0x809d401b; // 2157789211 +constexpr int ORBIS_METAGEN_ERROR_NOT_EXIST_DIRECTORY = 0x809d401c; // 2157789212 +constexpr int ORBIS_METAGEN_ERROR_NOT_EXIST_FIELD = 0x809d401d; // 2157789213 +constexpr int ORBIS_METAGEN_ERROR_NOT_EXIST_FILE = 0x809d401e; // 2157789214 +constexpr int ORBIS_METAGEN_ERROR_NOT_EXIST_GROUP = 0x809d401f; // 2157789215 +constexpr int ORBIS_METAGEN_ERROR_NOT_EXIST_PROFILE = 0x809d4020; // 2157789216 +constexpr int ORBIS_METAGEN_ERROR_NOW_PROCESSING = 0x809d4030; // 2157789232 +constexpr int ORBIS_METAGEN_ERROR_NOW_PROMOTING = 0x809d4021; // 2157789217 +constexpr int ORBIS_METAGEN_ERROR_OVER_MAX_HANDLER = 0x809d4028; // 2157789224 +constexpr int ORBIS_METAGEN_ERROR_REACH_DEPTH_LIMIT = 0x809d403b; // 2157789243 +constexpr int ORBIS_METAGEN_ERROR_REJECTED_ROLLBACK_OPERATION = 0x809d4024; // 2157789220 +constexpr int ORBIS_METAGEN_ERROR_SQL_NO_COND = 0x809d4036; // 2157789238 +constexpr int ORBIS_METAGEN_ERROR_SUBTRACT_PROMOTER = 0x809d402c; // 2157789228 +constexpr int ORBIS_METAGEN_ERROR_TOO_LARGE_TRANSACTION_VALUE = 0x809d4025; // 2157789221 + +// MUSICCORE +constexpr int ORBIS_MUSICCORE_CORE_ERROR_FATAL = 0x80fd0081; // 2164064385 +constexpr int ORBIS_MUSICCORE_CORE_ERROR_HDCP_DISABLED = 0x80fd0087; // 2164064391 +constexpr int ORBIS_MUSICCORE_CORE_ERROR_ILLEGAL_SIZE = 0x80fd0084; // 2164064388 +constexpr int ORBIS_MUSICCORE_CORE_ERROR_INVALID_CALL = 0x80fd0086; // 2164064390 +constexpr int ORBIS_MUSICCORE_CORE_ERROR_INVALID_PARAM = 0x80fd0082; // 2164064386 +constexpr int ORBIS_MUSICCORE_CORE_ERROR_NO_MEMORY = 0x80fd0083; // 2164064387 +constexpr int ORBIS_MUSICCORE_CORE_ERROR_NOT_FOUND = 0x80fd0085; // 2164064389 +constexpr int ORBIS_MUSICCORE_SERVER_ERROR_BUSY = 0x80fd0006; // 2164064262 +constexpr int ORBIS_MUSICCORE_SERVER_ERROR_CORE_FUNCTION_NOT_SET = 0x80fd0007; // 2164064263 +constexpr int ORBIS_MUSICCORE_SERVER_ERROR_EVENT_RESPONSE_QUEUE_EMPTY = 0x80fd000b; // 2164064267 +constexpr int ORBIS_MUSICCORE_SERVER_ERROR_INTERNAL = 0x80fd0008; // 2164064264 +constexpr int ORBIS_MUSICCORE_SERVER_ERROR_INVALID_CALL = 0x80fd0009; // 2164064265 +constexpr int ORBIS_MUSICCORE_SERVER_ERROR_INVALID_PARAM = 0x80fd0001; // 2164064257 +constexpr int ORBIS_MUSICCORE_SERVER_ERROR_MUSIC_CORE_NOT_CONNECTED = 0x80fd0005; // 2164064261 +constexpr int ORBIS_MUSICCORE_SERVER_ERROR_MUSIC_CORE_SERVER_NOT_LAUNCHED = + 0x80fd0003; // 2164064259 +constexpr int ORBIS_MUSICCORE_SERVER_ERROR_MUSIC_CORE_UNAVAILABLE = 0x80fd0004; // 2164064260 +constexpr int ORBIS_MUSICCORE_SERVER_ERROR_NO_MEMORY = 0x80fd0002; // 2164064258 +constexpr int ORBIS_MUSICCORE_SERVER_ERROR_NOT_SUPPORTED = 0x80fd000a; // 2164064266 + +// NAT_TYPE +constexpr int ORBIS_NAT_TYPE_ERROR_BUSY = 0x80412503; // 2151752963 +constexpr int ORBIS_NAT_TYPE_ERROR_HANDLER_MAX = 0x80412505; // 2151752965 +constexpr int ORBIS_NAT_TYPE_ERROR_ID_NOT_FOUND = 0x80412507; // 2151752967 +constexpr int ORBIS_NAT_TYPE_ERROR_INVALID_ARG = 0x80412504; // 2151752964 +constexpr int ORBIS_NAT_TYPE_ERROR_INVALID_ID = 0x80412506; // 2151752966 +constexpr int ORBIS_NAT_TYPE_ERROR_NOT_INITIALIZED = 0x80412501; // 2151752961 +constexpr int ORBIS_NAT_TYPE_ERROR_NOT_TERMINATED = 0x80412502; // 2151752962 + +// NET +constexpr int ORBIS_NET_AOSS_ERROR_BUSY = 0x80412221; // 2151752225 +constexpr int ORBIS_NET_AOSS_ERROR_INVALID_ALGO = 0x80412224; // 2151752228 +constexpr int ORBIS_NET_AOSS_ERROR_INVALID_IP = 0x80412225; // 2151752229 +constexpr int ORBIS_NET_AOSS_ERROR_LIB_INVALID_CHAR = 0x80412206; // 2151752198 +constexpr int ORBIS_NET_AOSS_ERROR_LIB_MULTI_AP = 0x80412202; // 2151752194 +constexpr int ORBIS_NET_AOSS_ERROR_LIB_MULTI_STA = 0x80412207; // 2151752199 +constexpr int ORBIS_NET_AOSS_ERROR_LIB_NO_AP = 0x80412201; // 2151752193 +constexpr int ORBIS_NET_AOSS_ERROR_LIB_NO_PACKET_INIT = 0x80412203; // 2151752195 +constexpr int ORBIS_NET_AOSS_ERROR_LIB_NO_PACKET_SEQ = 0x80412204; // 2151752196 +constexpr int ORBIS_NET_AOSS_ERROR_LIB_NOT_RESTART = 0x80412205; // 2151752197 +constexpr int ORBIS_NET_AOSS_ERROR_LIB_OTHER_ERROR = 0x8041220f; // 2151752207 +constexpr int ORBIS_NET_AOSS_ERROR_LIB_PROHIBIT_KEY = 0x80412208; // 2151752200 +constexpr int ORBIS_NET_AOSS_ERROR_STOPPED = 0x80412222; // 2151752226 +constexpr int ORBIS_NET_AOSS_ERROR_WLAN0_CANNOT_BE_FOUND = 0x80412223; // 2151752227 +constexpr int ORBIS_NET_BWE_VSH_ERROR_BANDWIDTH_TEST_NOT_COMPLETED = 0x80414205; // 2151760389 +constexpr int ORBIS_NET_BWE_VSH_ERROR_BUSY = 0x80414203; // 2151760387 +constexpr int ORBIS_NET_BWE_VSH_ERROR_CALLBACK_MAX = 0x80414206; // 2151760390 +constexpr int ORBIS_NET_BWE_VSH_ERROR_INVALID_ARG = 0x80414204; // 2151760388 +constexpr int ORBIS_NET_BWE_VSH_ERROR_INVALID_ID = 0x80414207; // 2151760391 +constexpr int ORBIS_NET_BWE_VSH_ERROR_NOT_INITIALIZED = 0x80414201; // 2151760385 +constexpr int ORBIS_NET_BWE_VSH_ERROR_NOT_TERMINATED = 0x80414202; // 2151760386 +constexpr int ORBIS_NET_CTL_ERROR_IPCINT_BUSY = 0x80412187; // 2151752071 +constexpr int ORBIS_NET_CTL_ERROR_VSH_CALLBACK_MAX = 0x80412185; // 2151752069 +constexpr int ORBIS_NET_CTL_ERROR_VSH_INVALID_ADDR = 0x80412184; // 2151752068 +constexpr int ORBIS_NET_CTL_ERROR_VSH_INVALID_ID = 0x80412186; // 2151752070 +constexpr int ORBIS_NET_CTL_ERROR_VSH_INVALID_IPADDR = 0x8041218f; // 2151752079 +constexpr int ORBIS_NET_CTL_ERROR_VSH_INVALID_MTU = 0x80412189; // 2151752073 +constexpr int ORBIS_NET_CTL_ERROR_IPCINT_INVALID_SCANINFO_BSSID = 0x8041219d; // 2151752093 +constexpr int ORBIS_NET_CTL_ERROR_IPCINT_INVALID_SIZE = 0x8041219e; // 2151752094 +constexpr int ORBIS_NET_CTL_ERROR_IPCINT_INVALID_SSID = 0x80412190; // 2151752080 +constexpr int ORBIS_NET_CTL_ERROR_IPCINT_INVALID_SSIDS_NUM = 0x80412191; // 2151752081 +constexpr int ORBIS_NET_CTL_ERROR_VSH_INVALID_WIFI_LOCK = 0x8041219a; // 2151752090 +constexpr int ORBIS_NET_CTL_ERROR_VSH_INVALID_WIFI_SECURITY_KEY = 0x80412193; // 2151752083 +constexpr int ORBIS_NET_CTL_ERROR_VSH_INVALID_WIFI_SECURITY_KEY_LEN = 0x8041218b; // 2151752075 +constexpr int ORBIS_NET_CTL_ERROR_VSH_NO_AOSS_AP = 0x80412197; // 2151752087 +constexpr int ORBIS_NET_CTL_ERROR_IPCINT_NO_SCANINFO = 0x8041219f; // 2151752095 +constexpr int ORBIS_NET_CTL_ERROR_VSH_NOT_INITIALIZED = 0x80412181; // 2151752065 +constexpr int ORBIS_NET_CTL_ERROR_VSH_NOT_TERMINATED = 0x80412182; // 2151752066 +constexpr int ORBIS_NET_CTL_ERROR_IPCINT_SCANINFO_LOCKED = 0x80412199; // 2151752089 +constexpr int ORBIS_NET_CTL_ERROR_VSH_UNKNOWN_DEVICE = 0x80412188; // 2151752072 +constexpr int ORBIS_NET_CTL_ERROR_VSH_UNKNOWN_DNS_CONFIG = 0x8041218d; // 2151752077 +constexpr int ORBIS_NET_CTL_ERROR_VSH_UNKNOWN_HTTP_PROXY_CONFIG = 0x8041218e; // 2151752078 +constexpr int ORBIS_NET_CTL_ERROR_VSH_UNKNOWN_IP_CONFIG = 0x8041218c; // 2151752076 +constexpr int ORBIS_NET_CTL_ERROR_VSH_UNKNOWN_WIFI_SECURITY = 0x8041218a; // 2151752074 +constexpr int ORBIS_NET_CTL_ERROR_VSH_WIFI_ALREADY_USED = 0x80412196; // 2151752086 +constexpr int ORBIS_NET_RAKURAKU_ERROR_FINDTIMEOUT = 0x80412603; // 2151753219 +constexpr int ORBIS_NET_RAKURAKU_ERROR_INVALID_RESULT = 0x80412623; // 2151753251 +constexpr int ORBIS_NET_RAKURAKU_ERROR_INVALID_STATE = 0x80412622; // 2151753250 +constexpr int ORBIS_NET_RAKURAKU_ERROR_INVALID_WIFI_SECURITY = 0x80412624; // 2151753252 +constexpr int ORBIS_NET_RAKURAKU_ERROR_MAXAP = 0x80412606; // 2151753222 +constexpr int ORBIS_NET_RAKURAKU_ERROR_MEMORY = 0x80412601; // 2151753217 +constexpr int ORBIS_NET_RAKURAKU_ERROR_NETWORK = 0x80412602; // 2151753218 +constexpr int ORBIS_NET_RAKURAKU_ERROR_STOPPED = 0x80412621; // 2151753249 +constexpr int ORBIS_NET_RAKURAKU_ERROR_TIMEOUT = 0x80412604; // 2151753220 +constexpr int ORBIS_NET_RAKURAKU_ERROR_UNKNOWN = 0x80412605; // 2151753221 +constexpr int ORBIS_NET_RAKURAKU_ERROR_UNKNOWNAUTH = 0x80412607; // 2151753223 +constexpr int ORBIS_NET_RAKURAKU_ERROR_USERABORT = 0x80412608; // 2151753224 +constexpr int ORBIS_NET_STUN_ERROR_ALREADY_INITIALIZED = 0x80412401; // 2151752705 +constexpr int ORBIS_NET_STUN_ERROR_CONTEXT_MAX = 0x80412409; // 2151752713 +constexpr int ORBIS_NET_STUN_ERROR_INET_PTON_FAILED = 0x8041240e; // 2151752718 +constexpr int ORBIS_NET_STUN_ERROR_INVALID_ARG = 0x8041240a; // 2151752714 +constexpr int ORBIS_NET_STUN_ERROR_INVALID_RESP_PADDING_DATA = 0x8041240c; // 2151752716 +constexpr int ORBIS_NET_STUN_ERROR_INVALID_RESP_PADDING_DATA_LEN = 0x8041240b; // 2151752715 +constexpr int ORBIS_NET_STUN_ERROR_MALLOC_FAILED = 0x8041240d; // 2151752717 +constexpr int ORBIS_NET_STUN_ERROR_MSG_INTEGRITY_CHECK_FAILURE = 0x80412407; // 2151752711 +constexpr int ORBIS_NET_STUN_ERROR_MSPACE_CREATE_FAILED = 0x80412410; // 2151752720 +constexpr int ORBIS_NET_STUN_ERROR_NOT_ENOUGH_SPACE = 0x80412406; // 2151752710 +constexpr int ORBIS_NET_STUN_ERROR_NOT_INITIALIZED = 0x80412402; // 2151752706 +constexpr int ORBIS_NET_STUN_ERROR_NOT_RECVED_MANDATORY_ATTR = 0x80412405; // 2151752709 +constexpr int ORBIS_NET_STUN_ERROR_RECVED_INVALID_RESPONSE = 0x80412404; // 2151752708 +constexpr int ORBIS_NET_STUN_ERROR_RESOLVER_CREATE_FAILED = 0x8041240f; // 2151752719 +constexpr int ORBIS_NET_STUN_ERROR_RESOLVER_FAILED = 0x80412408; // 2151752712 +constexpr int ORBIS_NET_STUN_ERROR_TIMEOUT = 0x80412403; // 2151752707 +constexpr int ORBIS_NET_STUN_ERROR_UPNP_ADDPORTMAPPING_FAILED = 0x80412411; // 2151752721 +constexpr int ORBIS_NET_UPNP_ERROR_ACTION_ACTION_FAILED = 0x80414174; // 2151760244 +constexpr int ORBIS_NET_UPNP_ERROR_ACTION_CONFLICT_IN_MAPPING = 0x80414178; // 2151760248 +constexpr int ORBIS_NET_UPNP_ERROR_ACTION_EXT_PORT_MUST_BE_WC = 0x8041417c; // 2151760252 +constexpr int ORBIS_NET_UPNP_ERROR_ACTION_FAILED = 0x80414108; // 2151760136 +constexpr int ORBIS_NET_UPNP_ERROR_ACTION_INVALID_ACTION = 0x80414171; // 2151760241 +constexpr int ORBIS_NET_UPNP_ERROR_ACTION_INVALID_ARGS = 0x80414172; // 2151760242 +constexpr int ORBIS_NET_UPNP_ERROR_ACTION_INVALID_VAR = 0x80414173; // 2151760243 +constexpr int ORBIS_NET_UPNP_ERROR_ACTION_LEASE_TIME_SPECIFIED = 0x8041417a; // 2151760250 +constexpr int ORBIS_NET_UPNP_ERROR_ACTION_NO_SUCH_ENTRY = 0x80414175; // 2151760245 +constexpr int ORBIS_NET_UPNP_ERROR_ACTION_OTHER = 0x8041417d; // 2151760253 +constexpr int ORBIS_NET_UPNP_ERROR_ACTION_REMOTEHOST_MUST_BE_WC = 0x8041417b; // 2151760251 +constexpr int ORBIS_NET_UPNP_ERROR_ACTION_SAME_PORT_REQUIRED = 0x80414179; // 2151760249 +constexpr int ORBIS_NET_UPNP_ERROR_ACTION_TIMEOUT = 0x8041410a; // 2151760138 +constexpr int ORBIS_NET_UPNP_ERROR_ACTION_WC_IN_EXT_PORT = 0x80414177; // 2151760247 +constexpr int ORBIS_NET_UPNP_ERROR_ACTION_WC_IN_SRC_IP = 0x80414176; // 2151760246 +constexpr int ORBIS_NET_UPNP_ERROR_ATTR_NOT_FOUND = 0x80414181; // 2151760257 +constexpr int ORBIS_NET_UPNP_ERROR_BUF_TOO_SMALL = 0x80414109; // 2151760137 +constexpr int ORBIS_NET_UPNP_ERROR_CLEN_TOO_BIG = 0x8041418c; // 2151760268 +constexpr int ORBIS_NET_UPNP_ERROR_CLOSE_TAG_NOT_FOUND = 0x80414190; // 2151760272 +constexpr int ORBIS_NET_UPNP_ERROR_COULD_NOT_RECVED_ALL_DATA = 0x8041418d; // 2151760269 +constexpr int ORBIS_NET_UPNP_ERROR_INVALID_ACTION_RESP = 0x80414107; // 2151760135 +constexpr int ORBIS_NET_UPNP_ERROR_INVALID_ARG = 0x80414105; // 2151760133 +constexpr int ORBIS_NET_UPNP_ERROR_INVALID_ATTR = 0x80414183; // 2151760259 +constexpr int ORBIS_NET_UPNP_ERROR_INVALID_HEADER = 0x80414189; // 2151760265 +constexpr int ORBIS_NET_UPNP_ERROR_INVALID_HTTP_RESPONSE = 0x8041418b; // 2151760267 +constexpr int ORBIS_NET_UPNP_ERROR_INVALID_INT_ACTION = 0x8041418f; // 2151760271 +constexpr int ORBIS_NET_UPNP_ERROR_INVALID_MSEARCH = 0x8041418a; // 2151760266 +constexpr int ORBIS_NET_UPNP_ERROR_INVALID_MSEARCH_ADDR = 0x80414186; // 2151760262 +constexpr int ORBIS_NET_UPNP_ERROR_LIBNETCTL_NOT_IPOBTAINED = 0x80414102; // 2151760130 +constexpr int ORBIS_NET_UPNP_ERROR_LINE_NOT_TERMINATED = 0x80414188; // 2151760264 +constexpr int ORBIS_NET_UPNP_ERROR_MSEARCH_TIMEOUT = 0x80414187; // 2151760263 +constexpr int ORBIS_NET_UPNP_ERROR_NO_EXT_IP = 0x8041417e; // 2151760254 +constexpr int ORBIS_NET_UPNP_ERROR_NODE_NAME_NOT_FOUND = 0x80414182; // 2151760258 +constexpr int ORBIS_NET_UPNP_ERROR_NODE_NOT_FOUND = 0x80414184; // 2151760260 +constexpr int ORBIS_NET_UPNP_ERROR_NOT_INITIALIZED = 0x80414101; // 2151760129 +constexpr int ORBIS_NET_UPNP_ERROR_NOT_SOAP_TAG = 0x80414180; // 2151760256 +constexpr int ORBIS_NET_UPNP_ERROR_OUTPUT_BUF_TOO_SMALL = 0x80414185; // 2151760261 +constexpr int ORBIS_NET_UPNP_ERROR_PREFIX_BUF_TOO_SMALL = 0x80414106; // 2151760134 +constexpr int ORBIS_NET_UPNP_ERROR_SERVICE_NOT_FOUND = 0x8041410b; // 2151760139 +constexpr int ORBIS_NET_UPNP_ERROR_XML_ENCODE_INSUFFICIENT = 0x804141a2; // 2151760290 +constexpr int ORBIS_NET_UPNP_ERROR_XML_ENCODE_INVALID_ARGUMENT = 0x804141a0; // 2151760288 +constexpr int ORBIS_NET_UPNP_ERROR_XML_ENCODE_INVALID_CHARACTER = 0x804141a1; // 2151760289 +constexpr int ORBIS_NET_WPS_ERROR_BUSY = 0x80412321; // 2151752481 +constexpr int ORBIS_NET_WPS_ERROR_DEVICE_OPEN = 0x80412325; // 2151752485 +constexpr int ORBIS_NET_WPS_ERROR_ENROLLEE_OPEN = 0x80412326; // 2151752486 +constexpr int ORBIS_NET_WPS_ERROR_INVALID_ARG = 0x80412323; // 2151752483 +constexpr int ORBIS_NET_WPS_ERROR_INVALID_MODE = 0x80412322; // 2151752482 +constexpr int ORBIS_NET_WPS_ERROR_INVALID_SETTING = 0x80412329; // 2151752489 +constexpr int ORBIS_NET_WPS_ERROR_NO_SETTING = 0x80412327; // 2151752487 +constexpr int ORBIS_NET_WPS_ERROR_NO_SUITABLE_SETTING = 0x80412328; // 2151752488 +constexpr int ORBIS_NET_WPS_ERROR_SONY_WPS_LIB_E_CANCELED = 0x80412303; // 2151752451 +constexpr int ORBIS_NET_WPS_ERROR_SONY_WPS_LIB_E_FAILED = 0x80412301; // 2151752449 +constexpr int ORBIS_NET_WPS_ERROR_SONY_WPS_LIB_E_PINMISMATCHED = 0x80412306; // 2151752454 +constexpr int ORBIS_NET_WPS_ERROR_SONY_WPS_LIB_E_PROTOCOL_TIMEOUT = 0x80412302; // 2151752450 +constexpr int ORBIS_NET_WPS_ERROR_SONY_WPS_LIB_E_SCAN_TIMEOUT = 0x80412304; // 2151752452 +constexpr int ORBIS_NET_WPS_ERROR_SONY_WPS_LIB_E_SESSION_OVERLAP = 0x80412305; // 2151752453 +constexpr int ORBIS_NET_WPS_ERROR_SONY_WPS_LIB_E_UNKNOWN = 0x80412307; // 2151752455 +constexpr int ORBIS_NET_WPS_ERROR_WLAN_NOT_FOUND = 0x80412324; // 2151752484 +constexpr int ORBIS_NET_APCTL_ERROR_AP_DISABLED = 0x8041298e; // 2151754126 +constexpr int ORBIS_NET_APCTL_ERROR_CALLBACK_MAX = 0x80412995; // 2151754133 +constexpr int ORBIS_NET_APCTL_ERROR_ID_NOT_FOUND = 0x80412997; // 2151754135 +constexpr int ORBIS_NET_APCTL_ERROR_INVALID_ADDR = 0x80412991; // 2151754129 +constexpr int ORBIS_NET_APCTL_ERROR_INVALID_ID = 0x80412996; // 2151754134 +constexpr int ORBIS_NET_APCTL_ERROR_INVALID_SIZE = 0x80412998; // 2151754136 +constexpr int ORBIS_NET_APCTL_ERROR_INVALID_TYPE = 0x80412990; // 2151754128 +constexpr int ORBIS_NET_APCTL_ERROR_NOT_INITIALIZED = 0x80412994; // 2151754132 +constexpr int ORBIS_NET_APCTL_ERROR_NOT_STARTED = 0x8041298f; // 2151754127 +constexpr int ORBIS_NET_APCTL_ERROR_STOP_REQ = 0x80412993; // 2151754131 +constexpr int ORBIS_NET_APCTL_ERROR_VSH_BUSY = 0x80412986; // 2151754118 +constexpr int ORBIS_NET_APCTL_ERROR_VSH_CALLBACK_MAX = 0x80412984; // 2151754116 +constexpr int ORBIS_NET_APCTL_ERROR_VSH_CHANNEL_CONFLICT = 0x80412992; // 2151754130 +constexpr int ORBIS_NET_APCTL_ERROR_VSH_INVALID_ADDR = 0x80412983; // 2151754115 +constexpr int ORBIS_NET_APCTL_ERROR_VSH_INVALID_ID = 0x80412985; // 2151754117 +constexpr int ORBIS_NET_APCTL_ERROR_VSH_INVALID_IPADDR = 0x8041298a; // 2151754122 +constexpr int ORBIS_NET_APCTL_ERROR_VSH_INVALID_SIZE = 0x8041298d; // 2151754125 +constexpr int ORBIS_NET_APCTL_ERROR_VSH_INVALID_SSID = 0x8041298b; // 2151754123 +constexpr int ORBIS_NET_APCTL_ERROR_VSH_INVALID_WIFI_SECURITY_KEY = 0x8041298c; // 2151754124 +constexpr int ORBIS_NET_APCTL_ERROR_VSH_INVALID_WIFI_SECURITY_KEY_LEN = 0x80412988; // 2151754120 +constexpr int ORBIS_NET_APCTL_ERROR_VSH_NOT_INITIALIZED = 0x80412981; // 2151754113 +constexpr int ORBIS_NET_APCTL_ERROR_VSH_NOT_TERMINATED = 0x80412982; // 2151754114 +constexpr int ORBIS_NET_APCTL_ERROR_VSH_UNKNOWN_IP_CONFIG = 0x80412989; // 2151754121 +constexpr int ORBIS_NET_APCTL_ERROR_VSH_UNKNOWN_WIFI_SECURITY = 0x80412987; // 2151754119 +constexpr int ORBIS_NET_CTL_ERROR_CALLBACK_MAX = 0x80412103; // 2151751939 +constexpr int ORBIS_NET_CTL_ERROR_DISCONNECT_REQ = 0x8041210e; // 2151751950 +constexpr int ORBIS_NET_CTL_ERROR_ETHERNET_PLUGOUT = 0x80412115; // 2151751957 +constexpr int ORBIS_NET_CTL_ERROR_ID_NOT_FOUND = 0x80412104; // 2151751940 +constexpr int ORBIS_NET_CTL_ERROR_INVALID_ADDR = 0x80412107; // 2151751943 +constexpr int ORBIS_NET_CTL_ERROR_INVALID_CODE = 0x80412106; // 2151751942 +constexpr int ORBIS_NET_CTL_ERROR_INVALID_ID = 0x80412105; // 2151751941 +constexpr int ORBIS_NET_CTL_ERROR_INVALID_SIZE = 0x80412111; // 2151751953 +constexpr int ORBIS_NET_CTL_ERROR_INVALID_TYPE = 0x8041210f; // 2151751951 +constexpr int ORBIS_NET_CTL_ERROR_IPCINT_OUT_OF_MEMORY = 0x80412183; // 2151752067 +constexpr int ORBIS_NET_CTL_ERROR_NETWORK_DISABLED = 0x8041210d; // 2151751949 +constexpr int ORBIS_NET_CTL_ERROR_NOT_AVAIL = 0x80412109; // 2151751945 +constexpr int ORBIS_NET_CTL_ERROR_NOT_CONNECTED = 0x80412108; // 2151751944 +constexpr int ORBIS_NET_CTL_ERROR_NOT_INITIALIZED = 0x80412101; // 2151751937 +constexpr int ORBIS_NET_CTL_ERROR_WIFI_BEACON_LOST = 0x80412117; // 2151751959 +constexpr int ORBIS_NET_CTL_ERROR_WIFI_DEAUTHED = 0x80412116; // 2151751958 +constexpr int ORBIS_NET_ERROR_CONFIG_ADD_ARP = 0x8041130f; // 2151748367 +constexpr int ORBIS_NET_ERROR_CONFIG_DEL_ARP = 0x80411310; // 2151748368 +constexpr int ORBIS_NET_ERROR_CONFIG_DEL_IFADDR = 0x80411308; // 2151748360 +constexpr int ORBIS_NET_ERROR_CONFIG_DOWN_IF = 0x80411303; // 2151748355 +constexpr int ORBIS_NET_ERROR_CONFIG_GET_ARP = 0x80411312; // 2151748370 +constexpr int ORBIS_NET_ERROR_CONFIG_GET_IFADDR = 0x80411306; // 2151748358 +constexpr int ORBIS_NET_ERROR_CONFIG_GET_IFMTU = 0x80411304; // 2151748356 +constexpr int ORBIS_NET_ERROR_CONFIG_GET_ROUTE = 0x8041130a; // 2151748362 +constexpr int ORBIS_NET_ERROR_CONFIG_INVALID_ARG = 0x8041130e; // 2151748366 +constexpr int ORBIS_NET_ERROR_CONFIG_NO_DEFAULT_ROUTE = 0x8041130c; // 2151748364 +constexpr int ORBIS_NET_ERROR_CONFIG_NO_MEMORY = 0x80411313; // 2151748371 +constexpr int ORBIS_NET_ERROR_CONFIG_NO_ROUTE = 0x80411314; // 2151748372 +constexpr int ORBIS_NET_ERROR_CONFIG_SET_ARP = 0x80411311; // 2151748369 +constexpr int ORBIS_NET_ERROR_CONFIG_SET_DEFAULT_SCOPE = 0x80411316; // 2151748374 +constexpr int ORBIS_NET_ERROR_CONFIG_SET_IFADDR = 0x80411307; // 2151748359 +constexpr int ORBIS_NET_ERROR_CONFIG_SET_IFMTU = 0x80411305; // 2151748357 +constexpr int ORBIS_NET_ERROR_CONFIG_SET_ROUTE = 0x80411309; // 2151748361 +constexpr int ORBIS_NET_ERROR_CONFIG_SETUP = 0x80411315; // 2151748373 +constexpr int ORBIS_NET_ERROR_CONFIG_SOCKET = 0x80411301; // 2151748353 +constexpr int ORBIS_NET_ERROR_CONFIG_UP_IF = 0x80411302; // 2151748354 +constexpr int ORBIS_NET_ERROR_CONFIG_WLAN_AP_CHANNEL_CONFLICT = 0x80411641; // 2151749185 +constexpr int ORBIS_NET_ERROR_CONFIG_WLAN_JOIN_ASSOC_RESP_TIMEOUT = 0x80411604; // 2151749124 +constexpr int ORBIS_NET_ERROR_CONFIG_WLAN_JOIN_AUTH_PROTO_MISMATCH = 0x80411602; // 2151749122 +constexpr int ORBIS_NET_ERROR_CONFIG_WLAN_JOIN_AUTH_REFUSED = 0x80411603; // 2151749123 +constexpr int ORBIS_NET_ERROR_CONFIG_WLAN_JOIN_AUTH_RESP_TIMEOUT = 0x80411605; // 2151749125 +constexpr int ORBIS_NET_ERROR_CONFIG_WLAN_JOIN_DISASSOCIATED = 0x80411608; // 2151749128 +constexpr int ORBIS_NET_ERROR_CONFIG_WLAN_JOIN_FW_INTERNAL = 0x80411609; // 2151749129 +constexpr int ORBIS_NET_ERROR_CONFIG_WLAN_JOIN_IEEE_NOT_SUPPORT_ALL_RATES = + 0x8041160e; // 2151749134 +constexpr int ORBIS_NET_ERROR_CONFIG_WLAN_JOIN_IEEE_STATUS_CODE = 0x8041160c; // 2151749132 +constexpr int ORBIS_NET_ERROR_CONFIG_WLAN_JOIN_INT_AP_CONNECTED = 0x8041160d; // 2151749133 +constexpr int ORBIS_NET_ERROR_CONFIG_WLAN_JOIN_KEY_EXCHANGE = 0x80411607; // 2151749127 +constexpr int ORBIS_NET_ERROR_CONFIG_WLAN_JOIN_NOT_FOUND = 0x80411601; // 2151749121 +constexpr int ORBIS_NET_ERROR_CONFIG_WLAN_JOIN_UNKNOWN = 0x8041160a; // 2151749130 +constexpr int ORBIS_NET_ERROR_CONFIG_WLAN_JOIN_WEP_DECRYPTION = 0x80411606; // 2151749126 +constexpr int ORBIS_NET_ERROR_DHCP_BUSY = 0x8041150c; // 2151748876 +constexpr int ORBIS_NET_ERROR_DHCP_GET_NAK = 0x80411505; // 2151748869 +constexpr int ORBIS_NET_ERROR_DHCP_INVALID_ARG = 0x80411506; // 2151748870 +constexpr int ORBIS_NET_ERROR_DHCP_INVALID_HOSTNAME = 0x80411508; // 2151748872 +constexpr int ORBIS_NET_ERROR_DHCP_INVALID_IFNAME = 0x8041150b; // 2151748875 +constexpr int ORBIS_NET_ERROR_DHCP_INVALID_PACKET = 0x80411501; // 2151748865 +constexpr int ORBIS_NET_ERROR_DHCP_INVALID_VENDOR_ID = 0x8041150d; // 2151748877 +constexpr int ORBIS_NET_ERROR_DHCP_LEASE_TIME = 0x80411504; // 2151748868 +constexpr int ORBIS_NET_ERROR_DHCP_NO_MEMORY = 0x80411509; // 2151748873 +constexpr int ORBIS_NET_ERROR_DHCP_NO_SERVER = 0x80411502; // 2151748866 +constexpr int ORBIS_NET_ERROR_DHCP_NOT_INITIALIZED = 0x8041150a; // 2151748874 +constexpr int ORBIS_NET_ERROR_DHCP_NOT_READY = 0x80411507; // 2151748871 +constexpr int ORBIS_NET_ERROR_DHCP_SENT_DECLINE = 0x80411503; // 2151748867 +constexpr int ORBIS_NET_ERROR_DUPLICATE_IP_BUSY = 0x80411a05; // 2151750149 +constexpr int ORBIS_NET_ERROR_DUPLICATE_IP_INVALID_ARG = 0x80411a01; // 2151750145 +constexpr int ORBIS_NET_ERROR_DUPLICATE_IP_INVALID_IFNAME = 0x80411a04; // 2151750148 +constexpr int ORBIS_NET_ERROR_DUPLICATE_IP_NO_MEMORY = 0x80411a02; // 2151750146 +constexpr int ORBIS_NET_ERROR_DUPLICATE_IP_NOT_INITIALIZED = 0x80411a03; // 2151750147 +constexpr int ORBIS_NET_ERROR_DUPLICATE_IP_REQUEST_ARP = 0x80411a06; // 2151750150 +constexpr int ORBIS_NET_ERROR_E2BIG = 0x80410107; // 2151743751 +constexpr int ORBIS_NET_ERROR_EACCES = 0x8041010d; // 2151743757 +constexpr int ORBIS_NET_ERROR_EADDRINUSE = 0x80410130; // 2151743792 +constexpr int ORBIS_NET_ERROR_EADDRNOTAVAIL = 0x80410131; // 2151743793 +constexpr int ORBIS_NET_ERROR_EADHOC = 0x804101a0; // 2151743904 +constexpr int ORBIS_NET_ERROR_EAFNOSUPPORT = 0x8041012f; // 2151743791 +constexpr int ORBIS_NET_ERROR_EAGAIN = 0x80410123; // 2151743779 +constexpr int ORBIS_NET_ERROR_EALREADY = 0x80410125; // 2151743781 +constexpr int ORBIS_NET_ERROR_EAUTH = 0x80410150; // 2151743824 +constexpr int ORBIS_NET_ERROR_EBADF = 0x80410109; // 2151743753 +constexpr int ORBIS_NET_ERROR_EBADRPC = 0x80410148; // 2151743816 +constexpr int ORBIS_NET_ERROR_EBUSY = 0x80410110; // 2151743760 +constexpr int ORBIS_NET_ERROR_ECALLBACK = 0x804101cb; // 2151743947 +constexpr int ORBIS_NET_ERROR_ECANCELED = 0x80410155; // 2151743829 +constexpr int ORBIS_NET_ERROR_ECHILD = 0x8041010a; // 2151743754 +constexpr int ORBIS_NET_ERROR_ECONNABORTED = 0x80410135; // 2151743797 +constexpr int ORBIS_NET_ERROR_ECONNREFUSED = 0x8041013d; // 2151743805 +constexpr int ORBIS_NET_ERROR_ECONNRESET = 0x80410136; // 2151743798 +constexpr int ORBIS_NET_ERROR_EDEADLK = 0x8041010b; // 2151743755 +constexpr int ORBIS_NET_ERROR_EDESC = 0x804101a5; // 2151743909 +constexpr int ORBIS_NET_ERROR_EDESCTIMEDOUT = 0x804101a6; // 2151743910 +constexpr int ORBIS_NET_ERROR_EDESTADDRREQ = 0x80410127; // 2151743783 +constexpr int ORBIS_NET_ERROR_EDOM = 0x80410121; // 2151743777 +constexpr int ORBIS_NET_ERROR_EDQUOT = 0x80410145; // 2151743813 +constexpr int ORBIS_NET_ERROR_EEXIST = 0x80410111; // 2151743761 +constexpr int ORBIS_NET_ERROR_EFAULT = 0x8041010e; // 2151743758 +constexpr int ORBIS_NET_ERROR_EFBIG = 0x8041011b; // 2151743771 +constexpr int ORBIS_NET_ERROR_EFTYPE = 0x8041014f; // 2151743823 +constexpr int ORBIS_NET_ERROR_EHOSTDOWN = 0x80410140; // 2151743808 +constexpr int ORBIS_NET_ERROR_EHOSTUNREACH = 0x80410141; // 2151743809 +constexpr int ORBIS_NET_ERROR_EIDRM = 0x80410152; // 2151743826 +constexpr int ORBIS_NET_ERROR_EINACTIVEDISABLED = 0x804101a3; // 2151743907 +constexpr int ORBIS_NET_ERROR_EINPROGRESS = 0x80410124; // 2151743780 +constexpr int ORBIS_NET_ERROR_EINTERNAL = 0x804101cc; // 2151743948 +constexpr int ORBIS_NET_ERROR_EINTR = 0x80410104; // 2151743748 +constexpr int ORBIS_NET_ERROR_EINVAL = 0x80410116; // 2151743766 +constexpr int ORBIS_NET_ERROR_EIO = 0x80410105; // 2151743749 +constexpr int ORBIS_NET_ERROR_EISCONN = 0x80410138; // 2151743800 +constexpr int ORBIS_NET_ERROR_EISDIR = 0x80410115; // 2151743765 +constexpr int ORBIS_NET_ERROR_ELOOP = 0x8041013e; // 2151743806 +constexpr int ORBIS_NET_ERROR_EMFILE = 0x80410118; // 2151743768 +constexpr int ORBIS_NET_ERROR_EMLINK = 0x8041011f; // 2151743775 +constexpr int ORBIS_NET_ERROR_EMSGSIZE = 0x80410128; // 2151743784 +constexpr int ORBIS_NET_ERROR_ENAMETOOLONG = 0x8041013f; // 2151743807 +constexpr int ORBIS_NET_ERROR_ENEEDAUTH = 0x80410151; // 2151743825 +constexpr int ORBIS_NET_ERROR_ENETDOWN = 0x80410132; // 2151743794 +constexpr int ORBIS_NET_ERROR_ENETINTR = 0x804101a7; // 2151743911 +constexpr int ORBIS_NET_ERROR_ENETRESET = 0x80410134; // 2151743796 +constexpr int ORBIS_NET_ERROR_ENETUNREACH = 0x80410133; // 2151743795 +constexpr int ORBIS_NET_ERROR_ENFILE = 0x80410117; // 2151743767 +constexpr int ORBIS_NET_ERROR_ENOALLOCMEM = 0x804101ce; // 2151743950 +constexpr int ORBIS_NET_ERROR_ENOBUFS = 0x80410137; // 2151743799 +constexpr int ORBIS_NET_ERROR_ENODATA = 0x804101a4; // 2151743908 +constexpr int ORBIS_NET_ERROR_ENODEV = 0x80410113; // 2151743763 +constexpr int ORBIS_NET_ERROR_ENOENT = 0x80410102; // 2151743746 +constexpr int ORBIS_NET_ERROR_ENOEXEC = 0x80410108; // 2151743752 +constexpr int ORBIS_NET_ERROR_ENOLCK = 0x8041014d; // 2151743821 +constexpr int ORBIS_NET_ERROR_ENOLIBMEM = 0x804101c9; // 2151743945 +constexpr int ORBIS_NET_ERROR_ENOMEM = 0x8041010c; // 2151743756 +constexpr int ORBIS_NET_ERROR_ENOMS = 0x80410153; // 2151743827 +constexpr int ORBIS_NET_ERROR_ENOPROTOOPT = 0x8041012a; // 2151743786 +constexpr int ORBIS_NET_ERROR_ENOSPC = 0x8041011c; // 2151743772 +constexpr int ORBIS_NET_ERROR_ENOSYS = 0x8041014e; // 2151743822 +constexpr int ORBIS_NET_ERROR_ENOTBLK = 0x8041010f; // 2151743759 +constexpr int ORBIS_NET_ERROR_ENOTCONN = 0x80410139; // 2151743801 +constexpr int ORBIS_NET_ERROR_ENOTDIR = 0x80410114; // 2151743764 +constexpr int ORBIS_NET_ERROR_ENOTEMPTY = 0x80410142; // 2151743810 +constexpr int ORBIS_NET_ERROR_ENOTINIT = 0x804101c8; // 2151743944 +constexpr int ORBIS_NET_ERROR_ENOTSOCK = 0x80410126; // 2151743782 +constexpr int ORBIS_NET_ERROR_ENOTTY = 0x80410119; // 2151743769 +constexpr int ORBIS_NET_ERROR_ENXIO = 0x80410106; // 2151743750 +constexpr int ORBIS_NET_ERROR_EOPNOTSUPP = 0x8041012d; // 2151743789 +constexpr int ORBIS_NET_ERROR_EOVERFLOW = 0x80410154; // 2151743828 +constexpr int ORBIS_NET_ERROR_EPERM = 0x80410101; // 2151743745 +constexpr int ORBIS_NET_ERROR_EPFNOSUPPORT = 0x8041012e; // 2151743790 +constexpr int ORBIS_NET_ERROR_EPIPE = 0x80410120; // 2151743776 +constexpr int ORBIS_NET_ERROR_EPROCLIM = 0x80410143; // 2151743811 +constexpr int ORBIS_NET_ERROR_EPROCUNAVAIL = 0x8041014c; // 2151743820 +constexpr int ORBIS_NET_ERROR_EPROGMISMATCH = 0x8041014b; // 2151743819 +constexpr int ORBIS_NET_ERROR_EPROGUNAVAIL = 0x8041014a; // 2151743818 +constexpr int ORBIS_NET_ERROR_EPROTONOSUPPORT = 0x8041012b; // 2151743787 +constexpr int ORBIS_NET_ERROR_EPROTOTYPE = 0x80410129; // 2151743785 +constexpr int ORBIS_NET_ERROR_ERANGE = 0x80410122; // 2151743778 +constexpr int ORBIS_NET_ERROR_EREMOTE = 0x80410147; // 2151743815 +constexpr int ORBIS_NET_ERROR_ERESERVED161 = 0x804101a1; // 2151743905 +constexpr int ORBIS_NET_ERROR_ERESERVED162 = 0x804101a2; // 2151743906 +constexpr int ORBIS_NET_ERROR_ERESERVED202 = 0x804101ca; // 2151743946 +constexpr int ORBIS_NET_ERROR_ERETURN = 0x804101cd; // 2151743949 +constexpr int ORBIS_NET_ERROR_EROFS = 0x8041011e; // 2151743774 +constexpr int ORBIS_NET_ERROR_ERPCMISMATCH = 0x80410149; // 2151743817 +constexpr int ORBIS_NET_ERROR_ESHUTDOWN = 0x8041013a; // 2151743802 +constexpr int ORBIS_NET_ERROR_ESOCKTNOSUPPORT = 0x8041012c; // 2151743788 +constexpr int ORBIS_NET_ERROR_ESPIPE = 0x8041011d; // 2151743773 +constexpr int ORBIS_NET_ERROR_ESRCH = 0x80410103; // 2151743747 +constexpr int ORBIS_NET_ERROR_ESTALE = 0x80410146; // 2151743814 +constexpr int ORBIS_NET_ERROR_ETIMEDOUT = 0x8041013c; // 2151743804 +constexpr int ORBIS_NET_ERROR_ETOOMANYREFS = 0x8041013b; // 2151743803 +constexpr int ORBIS_NET_ERROR_ETXTBSY = 0x8041011a; // 2151743770 +constexpr int ORBIS_NET_ERROR_EUSERS = 0x80410144; // 2151743812 +constexpr int ORBIS_NET_ERROR_EXDEV = 0x80410112; // 2151743762 +constexpr int ORBIS_NET_ERROR_PPPOE_ALREADY_STARTED = 0x80411401; // 2151748609 +constexpr int ORBIS_NET_ERROR_PPPOE_GET_DNS_ADDRS = 0x80411415; // 2151748629 +constexpr int ORBIS_NET_ERROR_PPPOE_GET_PPP_STATUS = 0x80411407; // 2151748615 +constexpr int ORBIS_NET_ERROR_PPPOE_GET_SESSION_ERROR = 0x8041140e; // 2151748622 +constexpr int ORBIS_NET_ERROR_PPPOE_GET_SESSION_PHASE = 0x80411408; // 2151748616 +constexpr int ORBIS_NET_ERROR_PPPOE_IFCREATE = 0x80411403; // 2151748611 +constexpr int ORBIS_NET_ERROR_PPPOE_NOT_STARTED = 0x80411406; // 2151748614 +constexpr int ORBIS_NET_ERROR_PPPOE_SESSION_AC_SYSTEM = 0x80411410; // 2151748624 +constexpr int ORBIS_NET_ERROR_PPPOE_SESSION_GENERIC = 0x80411411; // 2151748625 +constexpr int ORBIS_NET_ERROR_PPPOE_SESSION_GET_PADT = 0x8041140d; // 2151748621 +constexpr int ORBIS_NET_ERROR_PPPOE_SESSION_INIT = 0x80411409; // 2151748617 +constexpr int ORBIS_NET_ERROR_PPPOE_SESSION_NO_PADO = 0x8041140a; // 2151748618 +constexpr int ORBIS_NET_ERROR_PPPOE_SESSION_NO_PADR = 0x8041140c; // 2151748620 +constexpr int ORBIS_NET_ERROR_PPPOE_SESSION_NO_PADS = 0x8041140b; // 2151748619 +constexpr int ORBIS_NET_ERROR_PPPOE_SESSION_SERVICE_NAME = 0x8041140f; // 2151748623 +constexpr int ORBIS_NET_ERROR_PPPOE_SET_AUTHCFG = 0x80411404; // 2151748612 +constexpr int ORBIS_NET_ERROR_PPPOE_SET_DNSOPTS = 0x80411405; // 2151748613 +constexpr int ORBIS_NET_ERROR_PPPOE_SET_PARAMS = 0x80411416; // 2151748630 +constexpr int ORBIS_NET_ERROR_PPPOE_SOCKET = 0x80411402; // 2151748610 +constexpr int ORBIS_NET_ERROR_PPPOE_STATUS_AUTH = 0x80411412; // 2151748626 +constexpr int ORBIS_NET_ERROR_PPPOE_STATUS_NETWORK = 0x80411413; // 2151748627 +constexpr int ORBIS_NET_ERROR_PPPOE_STATUS_TERMINATE = 0x80411414; // 2151748628 +constexpr int ORBIS_NET_ERROR_RESOLVER_EALIGNMENT = 0x804101ea; // 2151743978 +constexpr int ORBIS_NET_ERROR_RESOLVER_EBUSY = 0x804101dd; // 2151743965 +constexpr int ORBIS_NET_ERROR_RESOLVER_EFORMAT = 0x804101e4; // 2151743972 +constexpr int ORBIS_NET_ERROR_RESOLVER_EINTERNAL = 0x804101dc; // 2151743964 +constexpr int ORBIS_NET_ERROR_RESOLVER_ENODNS = 0x804101e1; // 2151743969 +constexpr int ORBIS_NET_ERROR_RESOLVER_ENOHOST = 0x804101e6; // 2151743974 +constexpr int ORBIS_NET_ERROR_RESOLVER_ENORECORD = 0x804101e9; // 2151743977 +constexpr int ORBIS_NET_ERROR_RESOLVER_ENOSPACE = 0x804101de; // 2151743966 +constexpr int ORBIS_NET_ERROR_RESOLVER_ENOSUPPORT = 0x804101e3; // 2151743971 +constexpr int ORBIS_NET_ERROR_RESOLVER_ENOTIMPLEMENTED = 0x804101e7; // 2151743975 +constexpr int ORBIS_NET_ERROR_RESOLVER_EPACKET = 0x804101df; // 2151743967 +constexpr int ORBIS_NET_ERROR_RESOLVER_ERESERVED224 = 0x804101e0; // 2151743968 +constexpr int ORBIS_NET_ERROR_RESOLVER_ESERVERFAILURE = 0x804101e5; // 2151743973 +constexpr int ORBIS_NET_ERROR_RESOLVER_ESERVERREFUSED = 0x804101e8; // 2151743976 +constexpr int ORBIS_NET_ERROR_RESOLVER_ETIMEDOUT = 0x804101e2; // 2151743970 + +// NP +constexpr int ORBIS_NP_APP_LAUNCH_LINK_ERROR_ABORTED = 0x8055ae04; // 2153098756 +constexpr int ORBIS_NP_APP_LAUNCH_LINK_ERROR_ALREADY_INITIALIZED = 0x8055ae01; // 2153098753 +constexpr int ORBIS_NP_APP_LAUNCH_LINK_ERROR_CONFLICT = 0x8055ae07; // 2153098759 +constexpr int ORBIS_NP_APP_LAUNCH_LINK_ERROR_FILE_MALFORMED = 0x8055ae09; // 2153098761 +constexpr int ORBIS_NP_APP_LAUNCH_LINK_ERROR_FILE_UNSUPPORTED = 0x8055ae0a; // 2153098762 +constexpr int ORBIS_NP_APP_LAUNCH_LINK_ERROR_HTTP_SERVER = 0x8055ae08; // 2153098760 +constexpr int ORBIS_NP_APP_LAUNCH_LINK_ERROR_INVALID_ARGUMENT = 0x8055ae0c; // 2153098764 +constexpr int ORBIS_NP_APP_LAUNCH_LINK_ERROR_INVALID_REQUEST_ID = 0x8055ae06; // 2153098758 +constexpr int ORBIS_NP_APP_LAUNCH_LINK_ERROR_NO_MEMORY = 0x8055ae03; // 2153098755 +constexpr int ORBIS_NP_APP_LAUNCH_LINK_ERROR_NOT_INITIALIZED = 0x8055ae02; // 2153098754 +constexpr int ORBIS_NP_APP_LAUNCH_LINK_ERROR_PROHIBITED_SYSTEM_VERSION = 0x8055ae0b; // 2153098763 +constexpr int ORBIS_NP_APP_LAUNCH_LINK_ERROR_PROHIBITED_TITLE = 0x8055ae0d; // 2153098765 +constexpr int ORBIS_NP_APP_LAUNCH_LINK_ERROR_TOO_MANY_REQUEST = 0x8055ae05; // 2153098757 +constexpr int ORBIS_NP_ARCH_BASE64_ERROR_INVALID_CHARACTER = 0x80558004; // 2153086980 +constexpr int ORBIS_NP_ARCH_BASE64_ERROR_INVALID_LENGTH = 0x80558003; // 2153086979 +constexpr int ORBIS_NP_ARCH_CALLOUT_ERROR_NOT_INITIALIZED = 0x80558001; // 2153086977 +constexpr int ORBIS_NP_ARCH_CALLOUT_ERROR_NOT_TERMINATED = 0x80558002; // 2153086978 +constexpr int ORBIS_NP_ARCH_ERROR_CALLOUT_DUPLICATED = 0x80558006; // 2153086982 +constexpr int ORBIS_NP_ARCH_ERROR_CREATE_HEAP = 0x80558005; // 2153086981 +constexpr int ORBIS_NP_ARCH_ERROR_EVF_COND = 0x8055800c; // 2153086988 +constexpr int ORBIS_NP_ARCH_ERROR_INSUFFICIENT_BUFFER = 0x80558008; // 2153086984 +constexpr int ORBIS_NP_ARCH_ERROR_INVALID_ARGUMENT = 0x80558009; // 2153086985 +constexpr int ORBIS_NP_ARCH_ERROR_MUTEX_BUSY = 0x8055800f; // 2153086991 +constexpr int ORBIS_NP_ARCH_ERROR_PARSE_STRING = 0x8055800e; // 2153086990 +constexpr int ORBIS_NP_ARCH_ERROR_SEMA_ZERO = 0x8055800d; // 2153086989 +constexpr int ORBIS_NP_ARCH_ERROR_THREAD_FATAL = 0x80558007; // 2153086983 +constexpr int ORBIS_NP_ARCH_ERROR_TIMEOUT = 0x8055800b; // 2153086987 +constexpr int ORBIS_NP_ARCH_ERROR_UNKNOWN = 0x8055800a; // 2153086986 +constexpr int ORBIS_NP_ASM_CLIENT_ERROR_ABORTED = 0x8055a287; // 2153095815 +constexpr int ORBIS_NP_ASM_CLIENT_ERROR_ALREADY_INITIALIZED = 0x8055a281; // 2153095809 +constexpr int ORBIS_NP_ASM_CLIENT_ERROR_APP_NOT_LAUNCHED = 0x8055a28e; // 2153095822 +constexpr int ORBIS_NP_ASM_CLIENT_ERROR_CANNOT_CREATE_ASM_CLIENT = 0x8055a284; // 2153095812 +constexpr int ORBIS_NP_ASM_CLIENT_ERROR_FILE_NOT_FOUND = 0x8055a28c; // 2153095820 +constexpr int ORBIS_NP_ASM_CLIENT_ERROR_INTERNAL_ERROR = 0x8055a28b; // 2153095819 +constexpr int ORBIS_NP_ASM_CLIENT_ERROR_INVALID_ARGUMENT = 0x8055a283; // 2153095811 +constexpr int ORBIS_NP_ASM_CLIENT_ERROR_INVALID_NPTITLE_DAT = 0x8055a28d; // 2153095821 +constexpr int ORBIS_NP_ASM_CLIENT_ERROR_NOT_INITIALIZED = 0x8055a282; // 2153095810 +constexpr int ORBIS_NP_ASM_CLIENT_ERROR_NP_SERVICE_LAVEL_NOT_MATCH = 0x8055a289; // 2153095817 +constexpr int ORBIS_NP_ASM_CLIENT_ERROR_NP_TITLE_ID_NOT_SET = 0x8055a28a; // 2153095818 +constexpr int ORBIS_NP_ASM_CLIENT_ERROR_OUT_OF_MEMORY = 0x8055a285; // 2153095813 +constexpr int ORBIS_NP_ASM_CLIENT_ERROR_REQUEST_NOT_FOUND = 0x8055a286; // 2153095814 +constexpr int ORBIS_NP_ASM_CLIENT_ERROR_RESULT_EMPTY = 0x8055a28f; // 2153095823 +constexpr int ORBIS_NP_ASM_CLIENT_ERROR_SERVICE_ID_INFO_RESULT_TOO_BIG = 0x8055a288; // 2153095816 +constexpr int ORBIS_NP_ASM_ERROR_ABORTED = 0x8055a207; // 2153095687 +constexpr int ORBIS_NP_ASM_ERROR_ALREADY_INITIALIZED = 0x8055a201; // 2153095681 +constexpr int ORBIS_NP_ASM_ERROR_INTERNAL = 0x8055a208; // 2153095688 +constexpr int ORBIS_NP_ASM_ERROR_INVALID_ARGUMENT = 0x8055a203; // 2153095683 +constexpr int ORBIS_NP_ASM_ERROR_NOT_INITIALIZED = 0x8055a202; // 2153095682 +constexpr int ORBIS_NP_ASM_ERROR_OUT_OF_MEMORY = 0x8055a204; // 2153095684 +constexpr int ORBIS_NP_ASM_ERROR_PARSE_FAILURE = 0x8055a205; // 2153095685 +constexpr int ORBIS_NP_ASM_ERROR_REQUEST_NOT_FOUND = 0x8055a206; // 2153095686 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_ACCESS_TOKEN_REQUIRED = 0x8055a38a; // 2153096074 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_BAD_REQUEST = 0x8055a386; // 2153096070 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_BANNED_NP_CONSOLE_TOKEN = 0x8055a390; // 2153096080 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_EXPIRED_ACCESS_TOKEN = 0x8055a38c; // 2153096076 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_EXPIRED_NP_CONSOLE_TOKEN = 0x8055a38f; // 2153096079 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_EXPIRED_NP_TITLE_TOKEN = 0x8055a389; // 2153096073 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_INTERNAL_SERVER_ERROR = 0x8055a393; // 2153096083 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_INVALID_ACCESS_TOKEN = 0x8055a38b; // 2153096075 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_INVALID_API_GROUP = 0x8055a303; // 2153095939 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_INVALID_NP_CONSOLE_TOKEN = 0x8055a38e; // 2153096078 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_INVALID_NP_ENVIRONMENT = 0x8055a383; // 2153096067 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_INVALID_NP_TITLE_ID = 0x8055a304; // 2153095940 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_INVALID_NP_TITLE_TOKEN = 0x8055a388; // 2153096072 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_INVALID_REQUEST_BODY = 0x8055a381; // 2153096065 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_INVALID_REQUEST_QUERY_STRING = 0x8055a382; // 2153096066 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_INVALID_REQUEST_TIMESTAMP = 0x8055a307; // 2153095943 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_INVALID_SERVICE_NAME = 0x8055a302; // 2153095938 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_INVALID_SIGNATURE = 0x8055a308; // 2153095944 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_NOT_AUTHORIZED = 0x8055a391; // 2153096081 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_NOT_AUTHORIZED_NP_TITLE_ID_TO_USE_API_GROUP = + 0x8055a306; // 2153095942 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_NOT_AUTHORIZED_NP_TITLE_ID_TO_USE_SERVICE_NAME = + 0x8055a305; // 2153095941 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_NP_CONSOLE_TOKEN_REQUIRED = 0x8055a38d; // 2153096077 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_NP_TITLE_ID_DIFFERED_FROM_NP_TITLE_TOKENS = + 0x8055a309; // 2153095945 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_NP_TITLE_TOKEN_REQUIRED = 0x8055a387; // 2153096071 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_NULL_VALUE_NOT_ALLOWED = 0x8055a380; // 2153096064 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_RATE_LIMIT_EXCEEDED = 0x8055a392; // 2153096082 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_SERVER_BUSY = 0x8055a394; // 2153096084 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_SERVICE_CLOSED = 0x8055a396; // 2153096086 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_TOO_LARGE_BODY = 0x8055a384; // 2153096068 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_UNDER_MAINTENANCE = 0x8055a395; // 2153096085 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_UNEXPECTED_ERROR = 0x8055a397; // 2153096087 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_UNKNOWN = 0x8055a301; // 2153095937 +constexpr int ORBIS_NP_ASM_SERVER_ERROR_UNSUPPORTED_API_VERSION = 0x8055a385; // 2153096069 +constexpr int ORBIS_NP_AUTH_ERROR_ABORTED = 0x80550304; // 2153054980 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_CLOSED = 0x80550430; // 2153055280 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_RENEW_ACCOUNT1 = 0x80550440; // 2153055296 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_RENEW_ACCOUNT10 = 0x80550449; // 2153055305 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_RENEW_ACCOUNT11 = 0x8055044a; // 2153055306 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_RENEW_ACCOUNT12 = 0x8055044b; // 2153055307 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_RENEW_ACCOUNT13 = 0x8055044c; // 2153055308 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_RENEW_ACCOUNT14 = 0x8055044d; // 2153055309 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_RENEW_ACCOUNT15 = 0x8055044e; // 2153055310 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_RENEW_ACCOUNT16 = 0x8055044f; // 2153055311 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_RENEW_ACCOUNT2 = 0x80550441; // 2153055297 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_RENEW_ACCOUNT3 = 0x80550442; // 2153055298 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_RENEW_ACCOUNT4 = 0x80550443; // 2153055299 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_RENEW_ACCOUNT5 = 0x80550444; // 2153055300 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_RENEW_ACCOUNT6 = 0x80550445; // 2153055301 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_RENEW_ACCOUNT7 = 0x80550446; // 2153055302 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_RENEW_ACCOUNT8 = 0x80550447; // 2153055303 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_RENEW_ACCOUNT9 = 0x80550448; // 2153055304 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_RENEW_EULA = 0x80550432; // 2153055282 +constexpr int ORBIS_NP_AUTH_ERROR_ACCOUNT_SUSPENDED = 0x80550431; // 2153055281 +constexpr int ORBIS_NP_AUTH_ERROR_CONSOLE_ID_SUSPENDED = 0x80550427; // 2153055271 +constexpr int ORBIS_NP_AUTH_ERROR_INVALID_ARGUMENT = 0x80550301; // 2153054977 +constexpr int ORBIS_NP_AUTH_ERROR_INVALID_CONSOLE_ID = 0x80550424; // 2153055268 +constexpr int ORBIS_NP_AUTH_ERROR_INVALID_ID = 0x80550307; // 2153054983 +constexpr int ORBIS_NP_AUTH_ERROR_INVALID_SIZE = 0x80550302; // 2153054978 +constexpr int ORBIS_NP_AUTH_ERROR_OUT_OF_MEMORY = 0x80550303; // 2153054979 +constexpr int ORBIS_NP_AUTH_ERROR_REQUEST_MAX = 0x80550305; // 2153054981 +constexpr int ORBIS_NP_AUTH_ERROR_REQUEST_NOT_FOUND = 0x80550306; // 2153054982 +constexpr int ORBIS_NP_AUTH_ERROR_S_INVALID_CONSUMED_COUNT = 0x80550423; // 2153055267 +constexpr int ORBIS_NP_AUTH_ERROR_S_INVALID_CREDENTIAL = 0x80550421; // 2153055265 +constexpr int ORBIS_NP_AUTH_ERROR_S_INVALID_DATA_LENGTH = 0x80550410; // 2153055248 +constexpr int ORBIS_NP_AUTH_ERROR_S_INVALID_ENTITLEMENT_ID = 0x80550422; // 2153055266 +constexpr int ORBIS_NP_AUTH_ERROR_S_INVALID_SERVICE_ID = 0x80550420; // 2153055264 +constexpr int ORBIS_NP_AUTH_ERROR_S_INVALID_USER_AGENT = 0x80550411; // 2153055249 +constexpr int ORBIS_NP_AUTH_ERROR_S_INVALID_VERSION = 0x80550412; // 2153055250 +constexpr int ORBIS_NP_AUTH_ERROR_SERVER_MAINTENANCE = 0x80550403; // 2153055235 +constexpr int ORBIS_NP_AUTH_ERROR_SERVICE_BUSY = 0x80550402; // 2153055234 +constexpr int ORBIS_NP_AUTH_ERROR_SERVICE_DOWN = 0x80550401; // 2153055233 +constexpr int ORBIS_NP_AUTH_ERROR_SERVICE_END = 0x80550400; // 2153055232 +constexpr int ORBIS_NP_AUTH_ERROR_UNKNOWN = 0x80550480; // 2153055360 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_ACCESS_DENIED = 0x80552a03; // 2153064963 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_INVALID_CLIENT = 0x80552a08; // 2153064968 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_INVALID_GRANT = 0x80552a09; // 2153064969 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_INVALID_REQUEST = 0x80552a01; // 2153064961 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_INVALID_SCOPE = 0x80552a05; // 2153064965 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_OBSOLETE_10 = 0x80552a10; // 2153064976 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_OBSOLETE_11 = 0x80552a11; // 2153064977 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_OBSOLETE_12 = 0x80552a12; // 2153064978 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_OBSOLETE_13 = 0x80552a13; // 2153064979 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_OBSOLETE_14 = 0x80552a14; // 2153064980 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_OBSOLETE_15 = 0x80552a15; // 2153064981 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_OBSOLETE_16 = 0x80552a16; // 2153064982 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_OBSOLETE_17 = 0x80552a17; // 2153064983 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_OBSOLETE_18 = 0x80552a18; // 2153064984 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_OBSOLETE_19 = 0x80552a19; // 2153064985 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_OBSOLETE_1A = 0x80552a1a; // 2153064986 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_OBSOLETE_1B = 0x80552a1b; // 2153064987 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_OBSOLETE_1C = 0x80552a1c; // 2153064988 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_OBSOLETE_1D = 0x80552a1d; // 2153064989 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_OBSOLETE_80 = 0x80552a80; // 2153065088 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_OBSOLETE_81 = 0x80552a81; // 2153065089 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_OBSOLETE_82 = 0x80552a82; // 2153065090 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_OBSOLETE_83 = 0x80552a83; // 2153065091 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_SERVER_ERROR = 0x80552a06; // 2153064966 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_TEMPORARILY_UNAVAILABLE = 0x80552a07; // 2153064967 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_UNAUTHORIZED_CLIENT = 0x80552a02; // 2153064962 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_UNKNOWN = 0x80552a00; // 2153064960 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_UNSUPPORTED_GRANT_TYPE = 0x80552a0a; // 2153064970 +constexpr int ORBIS_NP_AUTH_SERVER_ERROR_UNSUPPORTED_RESPONSE_TYPE = 0x80552a04; // 2153064964 +constexpr int ORBIS_NP_BANDWIDTH_TEST_ERROR_BAD_RESPONSE = 0x80551f03; // 2153062147 +constexpr int ORBIS_NP_BANDWIDTH_TEST_ERROR_CONTEXT_NOT_AVAILABLE = 0x80551f07; // 2153062151 +constexpr int ORBIS_NP_BANDWIDTH_TEST_ERROR_INVALID_ARGUMENT = 0x80551f05; // 2153062149 +constexpr int ORBIS_NP_BANDWIDTH_TEST_ERROR_INVALID_SIZE = 0x80551f06; // 2153062150 +constexpr int ORBIS_NP_BANDWIDTH_TEST_ERROR_NOT_INITIALIZED = 0x80551f02; // 2153062146 +constexpr int ORBIS_NP_BANDWIDTH_TEST_ERROR_OUT_OF_MEMORY = 0x80551f04; // 2153062148 +constexpr int ORBIS_NP_COMMERCE_DIALOG_ERROR_NOT_GAME_PROCESS = 0x8055ab01; // 2153097985 +constexpr int ORBIS_NP_COMMERCE_DIALOG_ERROR_OUT_OF_MEMORY = 0x8055ab02; // 2153097986 +constexpr int ORBIS_NP_COMMUNITY_ERROR_ABORTED = 0x80550707; // 2153056007 +constexpr int ORBIS_NP_COMMUNITY_ERROR_ALREADY_INITIALIZED = 0x80550701; // 2153056001 +constexpr int ORBIS_NP_COMMUNITY_ERROR_BAD_RESPONSE = 0x80550708; // 2153056008 +constexpr int ORBIS_NP_COMMUNITY_ERROR_BODY_TOO_LARGE = 0x80550709; // 2153056009 +constexpr int ORBIS_NP_COMMUNITY_ERROR_CLIENT_HANDLE_ALREADY_EXISTS = 0x80550715; // 2153056021 +constexpr int ORBIS_NP_COMMUNITY_ERROR_HTTP_SERVER = 0x8055070a; // 2153056010 +constexpr int ORBIS_NP_COMMUNITY_ERROR_INSUFFICIENT_ARGUMENT = 0x8055070c; // 2153056012 +constexpr int ORBIS_NP_COMMUNITY_ERROR_INVALID_ALIGNMENT = 0x80550714; // 2153056020 +constexpr int ORBIS_NP_COMMUNITY_ERROR_INVALID_ARGUMENT = 0x80550704; // 2153056004 +constexpr int ORBIS_NP_COMMUNITY_ERROR_INVALID_ID = 0x8055070e; // 2153056014 +constexpr int ORBIS_NP_COMMUNITY_ERROR_INVALID_ONLINE_ID = 0x8055070f; // 2153056015 +constexpr int ORBIS_NP_COMMUNITY_ERROR_INVALID_PARTITION = 0x80550713; // 2153056019 +constexpr int ORBIS_NP_COMMUNITY_ERROR_INVALID_SIGNATURE = 0x8055070b; // 2153056011 +constexpr int ORBIS_NP_COMMUNITY_ERROR_INVALID_TYPE = 0x80550711; // 2153056017 +constexpr int ORBIS_NP_COMMUNITY_ERROR_NO_LOGIN = 0x80550705; // 2153056005 +constexpr int ORBIS_NP_COMMUNITY_ERROR_NO_RESOURCE = 0x80550716; // 2153056022 +constexpr int ORBIS_NP_COMMUNITY_ERROR_NOT_INITIALIZED = 0x80550702; // 2153056002 +constexpr int ORBIS_NP_COMMUNITY_ERROR_OUT_OF_MEMORY = 0x80550703; // 2153056003 +constexpr int ORBIS_NP_COMMUNITY_ERROR_REQUEST_BEFORE_END = 0x80550717; // 2153056023 +constexpr int ORBIS_NP_COMMUNITY_ERROR_SCORE_INVALID_SAVEDATA_OWNER = 0x8055071a; // 2153056026 +constexpr int ORBIS_NP_COMMUNITY_ERROR_TOO_MANY_NPID = 0x80550719; // 2153056025 +constexpr int ORBIS_NP_COMMUNITY_ERROR_TOO_MANY_OBJECTS = 0x80550706; // 2153056006 +constexpr int ORBIS_NP_COMMUNITY_ERROR_TOO_MANY_SLOTID = 0x80550718; // 2153056024 +constexpr int ORBIS_NP_COMMUNITY_ERROR_TRANSACTION_ALREADY_END = 0x80550712; // 2153056018 +constexpr int ORBIS_NP_COMMUNITY_ERROR_TUS_INVALID_SAVEDATA_OWNER = 0x8055071b; // 2153056027 +constexpr int ORBIS_NP_COMMUNITY_ERROR_UNKNOWN_TYPE = 0x8055070d; // 2153056013 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_BAD_REQUEST = 0x80550801; // 2153056257 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_BASIC_BLACKLISTED_USER_ID = 0x805508b3; // 2153056435 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_BLACKLISTED_TITLE = 0x80550868; // 2153056360 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_BLACKLISTED_USER_ID = 0x80550811; // 2153056273 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_CENSORED = 0x8055080b; // 2153056267 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_CONDITIONS_NOT_SATISFIED = 0x80550873; // 2153056371 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_EXPIRED_SIGNATURE = 0x80550889; // 2153056393 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_FAIL_TO_CREATE_SIGNATURE = 0x80550826; // 2153056294 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_FORBIDDEN = 0x80550806; // 2153056262 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_FSR_BEFORE_SERVICE = 0x805508ad; // 2153056429 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_FSR_END_OF_SERVICE = 0x805508ae; // 2153056430 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_FSR_MAINTENANCE = 0x805508af; // 2153056431 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_GAME_DATA_ALREADY_EXISTS = 0x8055082c; // 2153056300 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_GAME_RANKING_NOT_FOUND = 0x80550812; // 2153056274 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_INTERNAL_SERVER_ERROR = 0x80550807; // 2153056263 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_INVALID_ABOUT_ME_CHARACTER = 0x80550821; // 2153056289 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_INVALID_ABOUT_ME_LENGTH = 0x80550822; // 2153056290 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_INVALID_ANTICHEAT_DATA = 0x80550819; // 2153056281 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_INVALID_ENVIRONMENT = 0x8055081d; // 2153056285 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_INVALID_NPID = 0x80550805; // 2153056261 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_INVALID_ONLINE_NAME_CHARACTER = + 0x8055081f; // 2153056287 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_INVALID_ONLINE_NAME_LENGTH = 0x80550820; // 2153056288 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_INVALID_SCORE = 0x80550823; // 2153056291 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_INVALID_SIGNATURE = 0x80550803; // 2153056259 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_INVALID_TICKET = 0x80550802; // 2153056258 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_INVALID_VIRTUAL_USER = 0x80550849; // 2153056329 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_LATEST_UPDATE_NOT_FOUND = 0x80550816; // 2153056278 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_MATCHING_BEFORE_SERVICE = 0x805508a0; // 2153056416 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_MATCHING_END_OF_SERVICE = 0x805508a1; // 2153056417 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_MATCHING_MAINTENANCE = 0x805508a2; // 2153056418 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_NO_SUCH_TITLE = 0x805508a6; // 2153056422 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_NO_SUCH_USER_NPID = 0x8055081b; // 2153056283 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_NON_PLUS_MEMBER = 0x8055085d; // 2153056349 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_NOT_BEST_SCORE = 0x80550815; // 2153056277 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_NOT_RECORDABLE_VERSION = 0x8055082e; // 2153056302 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_NOT_YET_DOWNLOADABLE = 0x80550862; // 2153056354 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_OVER_THE_GAME_DATA_LIMIT = 0x80550828; // 2153056296 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_OVER_THE_RANKING_LIMIT = 0x80550824; // 2153056292 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_PLAYER_BANNED = 0x8055080a; // 2153056266 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_QUOTA_MASTER_NOT_FOUND = 0x8055080f; // 2153056271 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_RANKING_BEFORE_SERVICE = 0x805508a3; // 2153056419 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_RANKING_BOARD_MASTER_NOT_FOUND = + 0x80550817; // 2153056279 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_RANKING_END_OF_SERVICE = 0x805508a4; // 2153056420 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_RANKING_GAME_DATA_MASTER_NOT_FOUND = + 0x80550818; // 2153056280 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_RANKING_MAINTENANCE = 0x805508a5; // 2153056421 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_RANKING_MASTER_INFO_NOT_FOUND = + 0x80550827; // 2153056295 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_RANKING_RECORD_FORBIDDEN = 0x8055080c; // 2153056268 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_RANKING_STORE_NOT_FOUND = 0x80550814; // 2153056276 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_RANKING_TITLE_NOT_FOUND = 0x80550810; // 2153056272 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_RECORD_DATE_IS_NEWER_THAN_COMP_DATE = + 0x8055086e; // 2153056366 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_SAVEDATA_NOT_FOUND = 0x8055085f; // 2153056351 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_SAVEDATA_UPDATED = 0x8055088a; // 2153056394 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_SELF_DATA_NOT_FOUND = 0x8055082a; // 2153056298 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_SERVICE_UNAVAILABLE = 0x80550809; // 2153056265 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_TITLE_USER_STORAGE_BEFORE_SERVICE = + 0x805508aa; // 2153056426 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_TITLE_USER_STORAGE_END_OF_SERVICE = + 0x805508ab; // 2153056427 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_TITLE_USER_STORAGE_MAINTENANCE = + 0x805508ac; // 2153056428 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_TOO_LARGE_DATA = 0x8055081a; // 2153056282 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_TOO_LARGE_ICONDATA = 0x80550869; // 2153056361 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_TOO_LARGE_SAVEDATA = 0x8055086a; // 2153056362 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_TOO_MANY_RESULTS = 0x8055082d; // 2153056301 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_TOO_MANY_SAVEDATA_FILES = 0x80550860; // 2153056352 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_TOO_MUCH_SAVEDATA_SIZE = 0x8055086d; // 2153056365 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_TOO_MUCH_TOTAL_SAVEDATA_SIZE = + 0x80550861; // 2153056353 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_UBS_BEFORE_SERVICE = 0x805508b0; // 2153056432 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_UBS_END_OF_SERVICE = 0x805508b1; // 2153056433 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_UBS_MAINTENANCE = 0x805508b2; // 2153056434 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_UNMATCH_MD5SUM = 0x8055086c; // 2153056364 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_UNMATCH_SEQUENCE = 0x8055085e; // 2153056350 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_UNMATCH_SIGNATURE = 0x8055086b; // 2153056363 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_UNSPECIFIED = 0x805508ff; // 2153056511 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_UNSUPPORTED_PLATFORM = 0x80550878; // 2153056376 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_UPLOADER_DATA_NOT_FOUND = 0x8055080e; // 2153056270 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_USER_NOT_ASSIGNED = 0x8055082b; // 2153056299 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_USER_PROFILE_NOT_FOUND = 0x8055080d; // 2153056269 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_USER_STORAGE_DATA_NOT_FOUND = + 0x8055084a; // 2153056330 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_USER_STORAGE_TITLE_MASTER_NOT_FOUND = + 0x80550848; // 2153056328 +constexpr int ORBIS_NP_COMMUNITY_SERVER_ERROR_VERSION_NOT_SUPPORTED = 0x80550808; // 2153056264 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_APPLICATION = 0x80f00630; // 2163213872 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_BUFFERSIZE = 0x80f00010; // 2163212304 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_CONTENTDIGEST = 0x80f00610; // 2163213840 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_CUMULATIVE = 0x80f00631; // 2163213873 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_CURRENTDIGEST = 0x80f00620; // 2163213856 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_DELTAFORMAT = 0x80f00a03; // 2163214851 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_DELTAKEYSIZE = 0x80f00a10; // 2163214864 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_DELTALATEST = 0x80f00642; // 2163213890 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_DELTAOFFSET = 0x80f00a02; // 2163214850 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_DELTAORIGIN = 0x80f00640; // 2163213888 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_DELTAPATCH = 0x80f00a01; // 2163214849 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_DELTASTATUS = 0x80f00a04; // 2163214852 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_DELTATARGET = 0x80f00641; // 2163213889 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_DELTAVERSION = 0x80f00a05; // 2163214853 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_DIGESTSHEADER = 0x80f00600; // 2163213824 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_DIGESTSINDEX = 0x80f00602; // 2163213826 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_DIGESTSSIZE = 0x80f00603; // 2163213827 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_DIGESTSVERSION = 0x80f00601; // 2163213825 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_ENTRYDECRYPT = 0x80f00403; // 2163213315 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_ENTRYDIGEST = 0x80f00402; // 2163213314 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_ENTRYINDEX = 0x80f00400; // 2163213312 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_ENTRYNOTFOUND = 0x80f00401; // 2163213313 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_FINALIZED = 0x80f00001; // 2163212289 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_HEADERFORMAT = 0x80f00100; // 2163212544 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_HEADERSIGN = 0x80f00101; // 2163212545 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_HEADERVERSION = 0x80f00102; // 2163212546 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_IMAGEDIGEST = 0x80f00800; // 2163214336 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_INCREMENTAL = 0x80f00632; // 2163213874 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_INDEXDIGEST = 0x80f00200; // 2163212800 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_NODELTAINFO = 0x80f00a00; // 2163214848 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_OBSOLETED = 0x80f00002; // 2163212290 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_ORIGINCHECK = 0x80f00612; // 2163213842 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_ORIGINDIGEST = 0x80f00611; // 2163213841 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_STATUSMISMATCH = 0x80f00633; // 2163213875 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_TARGETCHECK = 0x80f00622; // 2163213858 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_TARGETDIGEST = 0x80f00621; // 2163213857 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_UNSIGNED = 0x80f00000; // 2163212288 +constexpr int ORBIS_NP_DRM_CONTENT_ERROR_UNSUPPORTED = 0x80f00003; // 2163212291 +constexpr int ORBIS_NP_DRM_ERROR_BAD_ACTIVATION = 0x8087000d; // 2156331021 +constexpr int ORBIS_NP_DRM_ERROR_BROKEN_DATA = 0x80870007; // 2156331015 +constexpr int ORBIS_NP_DRM_ERROR_CONSOLE_MISMATCH = 0x8087000a; // 2156331018 +constexpr int ORBIS_NP_DRM_ERROR_CORRUPTED_STORAGE = 0x8087000e; // 2156331022 +constexpr int ORBIS_NP_DRM_ERROR_INVALID_ARG = 0x80870005; // 2156331013 +constexpr int ORBIS_NP_DRM_ERROR_INVALID_FORMAT = 0x80870006; // 2156331014 +constexpr int ORBIS_NP_DRM_ERROR_MAX_ACTIVATION = 0x80870009; // 2156331017 +constexpr int ORBIS_NP_DRM_ERROR_NOT_ACTIVATED = 0x8087000c; // 2156331020 +constexpr int ORBIS_NP_DRM_ERROR_NOT_FOUND = 0x80870008; // 2156331016 +constexpr int ORBIS_NP_DRM_ERROR_NOT_INCLUDE_KEYS = 0x8087000f; // 2156331023 +constexpr int ORBIS_NP_DRM_ERROR_NOT_INITIALIZED = 0x80870001; // 2156331009 +constexpr int ORBIS_NP_DRM_ERROR_NPENV_MISMATCH = 0x8087000b; // 2156331019 +constexpr int ORBIS_NP_DRM_ERROR_OUT_OF_MEMORY = 0x80870002; // 2156331010 +constexpr int ORBIS_NP_DRM_ERROR_PERM = 0x80870003; // 2156331011 +constexpr int ORBIS_NP_DRM_ERROR_UNKNOWN_VERSION = 0x80870004; // 2156331012 +constexpr int ORBIS_NP_ERROR_ABORTED = 0x80550012; // 2153054226 +constexpr int ORBIS_NP_ERROR_AGE_RESTRICTION = 0x8055000b; // 2153054219 +constexpr int ORBIS_NP_ERROR_ALREADY_INITIALIZED = 0x80550001; // 2153054209 +constexpr int ORBIS_NP_ERROR_CALLBACK_ALREADY_REGISTERED = 0x80550008; // 2153054216 +constexpr int ORBIS_NP_ERROR_CALLBACK_NOT_REGISTERED = 0x80550009; // 2153054217 +constexpr int ORBIS_NP_ERROR_INCONSISTENT_NP_TITLE_ID = 0x80550017; // 2153054231 +constexpr int ORBIS_NP_ERROR_INVALID_ARGUMENT = 0x80550003; // 2153054211 +constexpr int ORBIS_NP_ERROR_INVALID_ID = 0x80550015; // 2153054229 +constexpr int ORBIS_NP_ERROR_INVALID_SIZE = 0x80550011; // 2153054225 +constexpr int ORBIS_NP_ERROR_LATEST_PATCH_PKG_DOWNLOADED = 0x80550010; // 2153054224 +constexpr int ORBIS_NP_ERROR_LATEST_PATCH_PKG_EXIST = 0x8055000f; // 2153054223 +constexpr int ORBIS_NP_ERROR_LATEST_SYSTEM_SOFTWARE_EXIST = 0x8055000d; // 2153054221 +constexpr int ORBIS_NP_ERROR_LATEST_SYSTEM_SOFTWARE_EXIST_FOR_TITLE = 0x8055000e; // 2153054222 +constexpr int ORBIS_NP_ERROR_LOGOUT = 0x8055000c; // 2153054220 +constexpr int ORBIS_NP_ERROR_NOT_INITIALIZED = 0x80550002; // 2153054210 +constexpr int ORBIS_NP_ERROR_NOT_SIGNED_UP = 0x8055000a; // 2153054218 +constexpr int ORBIS_NP_ERROR_NP_TITLE_DAT_NOT_FOUND = 0x80550016; // 2153054230 +constexpr int ORBIS_NP_ERROR_OUT_OF_MEMORY = 0x80550005; // 2153054213 +constexpr int ORBIS_NP_ERROR_PATCH_NOT_CHECKED = 0x80550018; // 2153054232 +constexpr int ORBIS_NP_ERROR_REQUEST_MAX = 0x80550013; // 2153054227 +constexpr int ORBIS_NP_ERROR_REQUEST_NOT_FOUND = 0x80550014; // 2153054228 +constexpr int ORBIS_NP_ERROR_SIGNED_OUT = 0x80550006; // 2153054214 +constexpr int ORBIS_NP_ERROR_TITLE_IS_BANNED = 0x80550019; // 2153054233 +constexpr int ORBIS_NP_ERROR_UNKNOWN_PLATFORM_TYPE = 0x80550004; // 2153054212 +constexpr int ORBIS_NP_ERROR_USER_NOT_FOUND = 0x80550007; // 2153054215 +constexpr int ORBIS_NP_EXT_ERROR_ABORTED = 0x80559e14; // 2153094676 +constexpr int ORBIS_NP_EXT_ERROR_ALREADY_INITIALIZED = 0x80559e01; // 2153094657 +constexpr int ORBIS_NP_EXT_ERROR_BUFFER_OVERFLOW = 0x80559e0a; // 2153094666 +constexpr int ORBIS_NP_EXT_ERROR_BUFFER_UNDERFLOW = 0x80559e0b; // 2153094667 +constexpr int ORBIS_NP_EXT_ERROR_DECRYPT_STREAM = 0x80559e20; // 2153094688 +constexpr int ORBIS_NP_EXT_ERROR_DIR_NOT_FOUND = 0x80559e27; // 2153094695 +constexpr int ORBIS_NP_EXT_ERROR_FILE_ALREADY_OPENED = 0x80559e18; // 2153094680 +constexpr int ORBIS_NP_EXT_ERROR_FILE_NAME_TOO_LONG = 0x80559e31; // 2153094705 +constexpr int ORBIS_NP_EXT_ERROR_FILE_NOT_FOUND = 0x80559e19; // 2153094681 +constexpr int ORBIS_NP_EXT_ERROR_FILE_NOT_OPENED = 0x80559e17; // 2153094679 +constexpr int ORBIS_NP_EXT_ERROR_HTTP_CONNECTION_NOT_FOUND = 0x80559e13; // 2153094675 +constexpr int ORBIS_NP_EXT_ERROR_HTTP_FILE_ALREADY_OPENED = 0x80559e1e; // 2153094686 +constexpr int ORBIS_NP_EXT_ERROR_HTTP_FILE_NOT_FOUND = 0x80559e1f; // 2153094687 +constexpr int ORBIS_NP_EXT_ERROR_HTTP_FILE_NOT_OPENED = 0x80559e1d; // 2153094685 +constexpr int ORBIS_NP_EXT_ERROR_INSUFFICIENT_BUFFER = 0x80559e0d; // 2153094669 +constexpr int ORBIS_NP_EXT_ERROR_INSUFFICIENT_DISK_SPACE = 0x80559e29; // 2153094697 +constexpr int ORBIS_NP_EXT_ERROR_INVALID_ARGUMENT = 0x80559e11; // 2153094673 +constexpr int ORBIS_NP_EXT_ERROR_INVALID_HANDLE = 0x80559e0f; // 2153094671 +constexpr int ORBIS_NP_EXT_ERROR_INVALID_NPBIND_DAT = 0x80559e21; // 2153094689 +constexpr int ORBIS_NP_EXT_ERROR_INVALID_NPTITLE_DAT = 0x80559e23; // 2153094691 +constexpr int ORBIS_NP_EXT_ERROR_INVALID_RESPONSE = 0x80559e2d; // 2153094701 +constexpr int ORBIS_NP_EXT_ERROR_JSON_ITEM_NOT_FOUND = 0x80559e0e; // 2153094670 +constexpr int ORBIS_NP_EXT_ERROR_JSON_PARSE_FAILED = 0x80559e0c; // 2153094668 +constexpr int ORBIS_NP_EXT_ERROR_MEMORY_EXTEND = 0x80559e1a; // 2153094682 +constexpr int ORBIS_NP_EXT_ERROR_NO_IMPL = 0x80559e2f; // 2153094703 +constexpr int ORBIS_NP_EXT_ERROR_NOT_INITIALIZED = 0x80559e02; // 2153094658 +constexpr int ORBIS_NP_EXT_ERROR_NP_BIND_DAT_FILE_NOT_FOUND = 0x80559e25; // 2153094693 +constexpr int ORBIS_NP_EXT_ERROR_NP_BIND_INFO_NOT_FOUND = 0x80559e28; // 2153094696 +constexpr int ORBIS_NP_EXT_ERROR_NP_TITLE_DAT_FILE_NOT_FOUND = 0x80559e26; // 2153094694 +constexpr int ORBIS_NP_EXT_ERROR_OBJECT_ALREADY_INITIALIZED = 0x80559e03; // 2153094659 +constexpr int ORBIS_NP_EXT_ERROR_OBJECT_NOT_INITIALIZED = 0x80559e04; // 2153094660 +constexpr int ORBIS_NP_EXT_ERROR_OUT_OF_MEMORY = 0x80559e09; // 2153094665 +constexpr int ORBIS_NP_EXT_ERROR_PATH_TOO_LONG = 0x80559e30; // 2153094704 +constexpr int ORBIS_NP_EXT_ERROR_QUEUE_EMPTY = 0x80559e16; // 2153094678 +constexpr int ORBIS_NP_EXT_ERROR_QUEUE_FULL = 0x80559e15; // 2153094677 +constexpr int ORBIS_NP_EXT_ERROR_SERVICE_BASE_URL_NOT_FOUND = 0x80559e2e; // 2153094702 +constexpr int ORBIS_NP_EXT_ERROR_STREAM_ALREADY_OPENED = 0x80559e1c; // 2153094684 +constexpr int ORBIS_NP_EXT_ERROR_STREAM_NOT_OPENED = 0x80559e1b; // 2153094683 +constexpr int ORBIS_NP_EXT_ERROR_TOO_MANY_HTTP_CONNECTION = 0x80559e12; // 2153094674 +constexpr int ORBIS_NP_EXT_ERROR_UNEXPECTED_EOF = 0x80559e10; // 2153094672 +constexpr int ORBIS_NP_EXT_ERROR_UNKNOWN = 0x80559e00; // 2153094656 +constexpr int ORBIS_NP_EXT_ERROR_UNKNOWN_BOOT_TYPE = 0x80559e2c; // 2153094700 +constexpr int ORBIS_NP_EXT_ERROR_UNSUPPORTED_NPBIND_DAT = 0x80559e22; // 2153094690 +constexpr int ORBIS_NP_EXT_ERROR_UNSUPPORTED_NPTITLE_DAT = 0x80559e24; // 2153094692 +constexpr int ORBIS_NP_EXT_ERROR_USER_ACCOUNT_NOT_BOUND = 0x80559e2b; // 2153094699 +constexpr int ORBIS_NP_EXT_ERROR_USER_NOT_FOUND = 0x80559e2a; // 2153094698 +constexpr int ORBIS_NP_EXT_ERROR_WORK_ITEM_ALREADY_REGISTERED = 0x80559e05; // 2153094661 +constexpr int ORBIS_NP_EXT_ERROR_WORK_ITEM_NOT_FOUND = 0x80559e08; // 2153094664 +constexpr int ORBIS_NP_EXT_ERROR_WORKER_ALREADY_STARTED = 0x80559e06; // 2153094662 +constexpr int ORBIS_NP_EXT_ERROR_WORKER_NOT_RUNNING = 0x80559e07; // 2153094663 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_ABORTED = 0x8055ac07; // 2153098247 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_ALREADY_INITIALIZED = 0x8055ac01; // 2153098241 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_BAD_RESPONSE = 0x8055ac16; // 2153098262 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_BODY_TOO_LARGE = 0x8055ac08; // 2153098248 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_CLIENT_HANDLE_ALREADY_EXISTS = 0x8055ac10; // 2153098256 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_HTTP_SERVER = 0x8055ac09; // 2153098249 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_INSUFFICIENT_ARGUMENT = 0x8055ac0b; // 2153098251 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_INVALID_ALIGNMENT = 0x8055ac0f; // 2153098255 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_INVALID_ARGUMENT = 0x8055ac04; // 2153098244 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_INVALID_ID = 0x8055ac0c; // 2153098252 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_INVALID_PARTITION = 0x8055ac0e; // 2153098254 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_INVALID_SIGNATURE = 0x8055ac0a; // 2153098250 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_INVALID_SIZE = 0x8055ac05; // 2153098245 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_NO_RESOURCE = 0x8055ac11; // 2153098257 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_NOT_INITIALIZED = 0x8055ac02; // 2153098242 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_OUT_OF_MEMORY = 0x8055ac03; // 2153098243 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_REQUEST_BEFORE_END = 0x8055ac12; // 2153098258 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_TOO_MANY_NPID = 0x8055ac14; // 2153098260 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_TOO_MANY_OBJECTS = 0x8055ac06; // 2153098246 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_TOO_MANY_SLOTID = 0x8055ac13; // 2153098259 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_TRANSACTION_ALREADY_END = 0x8055ac0d; // 2153098253 +constexpr int ORBIS_NP_GRIEF_REPORT_ERROR_UNKNOWN_TYPE = 0x8055ac15; // 2153098261 +constexpr int ORBIS_NP_IN_GAME_MESSAGE_ERROR_ABORTED = 0x80552b06; // 2153065222 +constexpr int ORBIS_NP_IN_GAME_MESSAGE_ERROR_EXCEED_RATE_LIMIT = 0x80552b09; // 2153065225 +constexpr int ORBIS_NP_IN_GAME_MESSAGE_ERROR_HANDLE_NOT_FOUND = 0x80552b05; // 2153065221 +constexpr int ORBIS_NP_IN_GAME_MESSAGE_ERROR_INVALID_ARGUMENT = 0x80552b02; // 2153065218 +constexpr int ORBIS_NP_IN_GAME_MESSAGE_ERROR_LIB_CONTEXT_NOT_FOUND = 0x80552b03; // 2153065219 +constexpr int ORBIS_NP_IN_GAME_MESSAGE_ERROR_NOT_PREPARED = 0x80552b08; // 2153065224 +constexpr int ORBIS_NP_IN_GAME_MESSAGE_ERROR_NOT_SIGNED_IN = 0x80552b04; // 2153065220 +constexpr int ORBIS_NP_IN_GAME_MESSAGE_ERROR_OUT_OF_MEMORY = 0x80552b01; // 2153065217 +constexpr int ORBIS_NP_IN_GAME_MESSAGE_ERROR_SIGNED_IN_USER_NOT_FOUND = 0x80552b07; // 2153065223 +constexpr int ORBIS_NP_IN_GAME_MESSAGE_ERROR_USER_SLOT_FULL = 0x8055a707; // 2153096967 +constexpr int ORBIS_NP_IN_GAME_MESSAGE_SERVICE_ERROR_ALREADY_INITIALIZED = 0x8055a703; // 2153096963 +constexpr int ORBIS_NP_IN_GAME_MESSAGE_SERVICE_ERROR_CALLBACK_QUEUE_OVERFLOW = + 0x8055a706; // 2153096966 +constexpr int ORBIS_NP_IN_GAME_MESSAGE_SERVICE_ERROR_INVALID_ARGUMENT = 0x8055a702; // 2153096962 +constexpr int ORBIS_NP_IN_GAME_MESSAGE_SERVICE_ERROR_IPC_CONTEXT_NOT_FOUND = + 0x8055a705; // 2153096965 +constexpr int ORBIS_NP_IN_GAME_MESSAGE_SERVICE_ERROR_NOT_INITIALIZED = 0x8055a704; // 2153096964 +constexpr int ORBIS_NP_IN_GAME_MESSAGE_SERVICE_ERROR_OUT_OF_MEMORY = 0x8055a701; // 2153096961 +constexpr int ORBIS_NP_IPC_ERROR_ABORTED_REQUEST_ID = 0x80559d0c; // 2153094412 +constexpr int ORBIS_NP_IPC_ERROR_ALREADY_CONNECTED = 0x80559d07; // 2153094407 +constexpr int ORBIS_NP_IPC_ERROR_ALREADY_INITIALIZED = 0x80559d00; // 2153094400 +constexpr int ORBIS_NP_IPC_ERROR_ALREADY_REGISTERED = 0x80559d12; // 2153094418 +constexpr int ORBIS_NP_IPC_ERROR_BUSY_REQUEST_ID = 0x80559d0b; // 2153094411 +constexpr int ORBIS_NP_IPC_ERROR_EVF_COND = 0x80559d1b; // 2153094427 +constexpr int ORBIS_NP_IPC_ERROR_INTERNAL = 0x80559d03; // 2153094403 +constexpr int ORBIS_NP_IPC_ERROR_INVALID_ARGUMENT = 0x80559d04; // 2153094404 +constexpr int ORBIS_NP_IPC_ERROR_INVALID_PARAMETER = 0x80559d14; // 2153094420 +constexpr int ORBIS_NP_IPC_ERROR_INVALID_REQUEST_ID = 0x80559d0a; // 2153094410 +constexpr int ORBIS_NP_IPC_ERROR_NO_CALLBACK = 0x80559d17; // 2153094423 +constexpr int ORBIS_NP_IPC_ERROR_NO_OBJECT = 0x80559d06; // 2153094406 +constexpr int ORBIS_NP_IPC_ERROR_NO_SESSION = 0x80559d18; // 2153094424 +constexpr int ORBIS_NP_IPC_ERROR_NOT_CONNECTED = 0x80559d08; // 2153094408 +constexpr int ORBIS_NP_IPC_ERROR_NOT_INITIALIZED = 0x80559d01; // 2153094401 +constexpr int ORBIS_NP_IPC_ERROR_NOT_OUTSTANDING = 0x80559d0d; // 2153094413 +constexpr int ORBIS_NP_IPC_ERROR_NOT_REGISTERED = 0x80559d13; // 2153094419 +constexpr int ORBIS_NP_IPC_ERROR_OUT_OF_MEMORY = 0x80559d02; // 2153094402 +constexpr int ORBIS_NP_IPC_ERROR_QUEUE_EMPTY = 0x80559d11; // 2153094417 +constexpr int ORBIS_NP_IPC_ERROR_QUEUE_FULL = 0x80559d10; // 2153094416 +constexpr int ORBIS_NP_IPC_ERROR_REQUEST_NOT_FINISHED = 0x80559d1c; // 2153094428 +constexpr int ORBIS_NP_IPC_ERROR_SERVICE_ALREADY_INITIALIZED = 0x80559d19; // 2153094425 +constexpr int ORBIS_NP_IPC_ERROR_SERVICE_NOT_FOUND = 0x80559d16; // 2153094422 +constexpr int ORBIS_NP_IPC_ERROR_SERVICE_NOT_INITIALIZED = 0x80559d1a; // 2153094426 +constexpr int ORBIS_NP_IPC_ERROR_TIMEOUT = 0x80559d0e; // 2153094414 +constexpr int ORBIS_NP_IPC_ERROR_TOO_MANY_CLIENT = 0x80559d0f; // 2153094415 +constexpr int ORBIS_NP_IPC_ERROR_TOO_MANY_OBJECTS = 0x80559d05; // 2153094405 +constexpr int ORBIS_NP_IPC_ERROR_TOO_MANY_REQUEST = 0x80559d09; // 2153094409 +constexpr int ORBIS_NP_IPC_ERROR_TOO_MANY_SERVICE = 0x80559d15; // 2153094421 +constexpr int ORBIS_NP_KDC_ERROR_ALREADY_INITIALIZED = 0x80558205; // 2153087493 +constexpr int ORBIS_NP_KDC_ERROR_ALREADY_INITIALIZED_GLOBAL = 0x8055820f; // 2153087503 +constexpr int ORBIS_NP_KDC_ERROR_HTTPS_CN_CHECK = 0x80558220; // 2153087520 +constexpr int ORBIS_NP_KDC_ERROR_HTTPS_INTERNAL = 0x80558223; // 2153087523 +constexpr int ORBIS_NP_KDC_ERROR_HTTPS_INVALID_CERT = 0x80558222; // 2153087522 +constexpr int ORBIS_NP_KDC_ERROR_HTTPS_NOT_AFTER_CHECK = 0x80558224; // 2153087524 +constexpr int ORBIS_NP_KDC_ERROR_HTTPS_NOT_BEFORE_CHECK = 0x80558225; // 2153087525 +constexpr int ORBIS_NP_KDC_ERROR_HTTPS_UNKNOWN_CA = 0x80558221; // 2153087521 +constexpr int ORBIS_NP_KDC_ERROR_INSUFFICIENT_BUFFER = 0x80558203; // 2153087491 +constexpr int ORBIS_NP_KDC_ERROR_INVALID_PARAM = 0x80558202; // 2153087490 +constexpr int ORBIS_NP_KDC_ERROR_NO_CONSOLE_NUM = 0x8055820b; // 2153087499 +constexpr int ORBIS_NP_KDC_ERROR_NOT_INITIALIZED = 0x80558204; // 2153087492 +constexpr int ORBIS_NP_KDC_ERROR_NOT_INITIALIZED_GLOBAL = 0x8055820e; // 2153087502 +constexpr int ORBIS_NP_KDC_ERROR_OUT_OF_MEMORY = 0x80558201; // 2153087489 +constexpr int ORBIS_NP_KDC_ERROR_PARAM_NOT_FOUND = 0x80558208; // 2153087496 +constexpr int ORBIS_NP_KDC_ERROR_PARSE_HEADER = 0x80558207; // 2153087495 +constexpr int ORBIS_NP_KDC_ERROR_REQUIRED_HEADER_NOT_FOUND = 0x80558206; // 2153087494 +constexpr int ORBIS_NP_KDC_ERROR_SERVER_RESPONSE = 0x8055820a; // 2153087498 +constexpr int ORBIS_NP_KDC_ERROR_UNKNOWN = 0x8055820c; // 2153087500 +constexpr int ORBIS_NP_KDC_ERROR_UNKNOWN_REASON_CODE = 0x80558209; // 2153087497 +constexpr int ORBIS_NP_KDC_ERROR_USING_MAX_KDC_ID = 0x8055820d; // 2153087501 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_ACCOUNT_IS_CLOSED = 0x80558330; // 2153087792 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_ACCOUNT_IS_SUSPENDED = 0x80558331; // 2153087793 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_ACCOUNT_NEEDS_REAPPROVAL_OF_EULA = 0x80558332; // 2153087794 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_ACTIVATED_CONSOLE_IS_FULL = 0x80558350; // 2153087824 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_ACTTYPE_MISMATCH = 0x80558329; // 2153087785 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_ACTTYPE_NOT_YET_AVAILABLE = 0x80558314; // 2153087764 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_BAD_CONSOLE_TOKEN = 0x80558328; // 2153087784 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_CONSOLE_ID_SUSPENDED = 0x80558327; // 2153087783 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_CONSOLE_NOT_ACTIVATED = 0x80558351; // 2153087825 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_CONTENT_BOUND_TO_OTHER_CONSOLE = 0x80558353; // 2153087827 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_CONTENT_IS_NOT_AVAILABLE = 0x80558355; // 2153087829 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_IAT_VALUE_OUT_OF_RANGE = 0x80558333; // 2153087795 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_INVALID_CONSOLE_ID = 0x80558324; // 2153087780 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_INVALID_CONSOLE_RAMDOM = 0x80558360; // 2153087840 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_INVALID_DATA_LENGTH = 0x80558310; // 2153087760 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_INVALID_PRODUCT_ID = 0x80558322; // 2153087778 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_INVALID_SERVICE_ID = 0x80558320; // 2153087776 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_INVALID_USER_AGENT = 0x80558311; // 2153087761 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_INVALID_USER_CREDENTIAL = 0x80558321; // 2153087777 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_PRIMARY_CONSOLE_CANNOT_CHANGED = 0x80558352; // 2153087826 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_SERVICE_IS_BUSY = 0x80558302; // 2153087746 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_SERVICE_IS_END = 0x80558300; // 2153087744 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_SERVICE_STOPS_TEMPORARILY = 0x80558301; // 2153087745 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_UNKNOWN = 0x80558380; // 2153087872 +constexpr int ORBIS_NP_KDC_SERVER_ERROR_UNSUPPORTED_VERSION = 0x80558312; // 2153087762 +constexpr int ORBIS_NP_MANAGER_ERROR_ABORTED = 0x80559b02; // 2153093890 +constexpr int ORBIS_NP_MANAGER_ERROR_ALREADY_BOUND = 0x80559b07; // 2153093895 +constexpr int ORBIS_NP_MANAGER_ERROR_AUTH_WEB_API_SERVICE_END = 0x80559b0d; // 2153093901 +constexpr int ORBIS_NP_MANAGER_ERROR_AUTH_WEB_API_SERVICE_UNAVAILABLE = 0x80559b0e; // 2153093902 +constexpr int ORBIS_NP_MANAGER_ERROR_BAD_RESPONSE = 0x80559b01; // 2153093889 +constexpr int ORBIS_NP_MANAGER_ERROR_CORRUPTED = 0x80559b15; // 2153093909 +constexpr int ORBIS_NP_MANAGER_ERROR_DATA_DIGEST_NOT_MATCHED = 0x80559b12; // 2153093906 +constexpr int ORBIS_NP_MANAGER_ERROR_DATA_SIZE_NOT_MATCHED = 0x80559b10; // 2153093904 +constexpr int ORBIS_NP_MANAGER_ERROR_DATA_VERSION_NOT_MATCHED = 0x80559b11; // 2153093905 +constexpr int ORBIS_NP_MANAGER_ERROR_ID_NOT_AVAILABLE = 0x80559b06; // 2153093894 +constexpr int ORBIS_NP_MANAGER_ERROR_INTERNAL = 0x80559b00; // 2153093888 +constexpr int ORBIS_NP_MANAGER_ERROR_INVALID_ACCOUNT_ID = 0x80559b13; // 2153093907 +constexpr int ORBIS_NP_MANAGER_ERROR_INVALID_CREDENTIAL = 0x80559b0b; // 2153093899 +constexpr int ORBIS_NP_MANAGER_ERROR_INVALID_ONLINE_ID = 0x80559b14; // 2153093908 +constexpr int ORBIS_NP_MANAGER_ERROR_INVALID_TOKEN = 0x80559b03; // 2153093891 +constexpr int ORBIS_NP_MANAGER_ERROR_MULTIPLE_USERS_FOUND = 0x80559b16; // 2153093910 +constexpr int ORBIS_NP_MANAGER_ERROR_NOT_CACHED = 0x80559b0a; // 2153093898 +constexpr int ORBIS_NP_MANAGER_ERROR_NP_ENVIRONMENT_NOT_MATCHED = 0x80559b0c; // 2153093900 +constexpr int ORBIS_NP_MANAGER_ERROR_PARSE_URI = 0x80559b09; // 2153093897 +constexpr int ORBIS_NP_MANAGER_ERROR_TOO_MANY_OBJECTS = 0x80559b04; // 2153093892 +constexpr int ORBIS_NP_MANAGER_ERROR_USER_LOGGED_OUT = 0x80559b17; // 2153093911 +constexpr int ORBIS_NP_MANAGER_ERROR_VARIANT_ACCOUNT_ID = 0x80559b05; // 2153093893 +constexpr int ORBIS_NP_MATCHING2_ERROR_ABORTED = 0x80550c2a; // 2153057322 +constexpr int ORBIS_NP_MATCHING2_ERROR_ALREADY_INITIALIZED = 0x80550c02; // 2153057282 +constexpr int ORBIS_NP_MATCHING2_ERROR_ALREADY_JOINED = 0x80550c24; // 2153057316 +constexpr int ORBIS_NP_MATCHING2_ERROR_BUSY = 0x80550c27; // 2153057319 +constexpr int ORBIS_NP_MATCHING2_ERROR_CANNOT_ABORT = 0x80550c39; // 2153057337 +constexpr int ORBIS_NP_MATCHING2_ERROR_CONNECTION_CLOSED_BY_SERVER = 0x80550c1e; // 2153057310 +constexpr int ORBIS_NP_MATCHING2_ERROR_CONTEXT_ALREADY_EXISTS = 0x80550c05; // 2153057285 +constexpr int ORBIS_NP_MATCHING2_ERROR_CONTEXT_ALREADY_STARTED = 0x80550c07; // 2153057287 +constexpr int ORBIS_NP_MATCHING2_ERROR_CONTEXT_MAX = 0x80550c04; // 2153057284 +constexpr int ORBIS_NP_MATCHING2_ERROR_CONTEXT_NOT_FOUND = 0x80550c06; // 2153057286 +constexpr int ORBIS_NP_MATCHING2_ERROR_CONTEXT_NOT_STARTED = 0x80550c08; // 2153057288 +constexpr int ORBIS_NP_MATCHING2_ERROR_CONTEXT_STOPPED = 0x80550c2d; // 2153057325 +constexpr int ORBIS_NP_MATCHING2_ERROR_DESTINATION_DISAPPEARED = 0x80550c1b; // 2153057307 +constexpr int ORBIS_NP_MATCHING2_ERROR_INSUFFICIENT_BUFFER = 0x80550c1a; // 2153057306 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_ALIGNMENT = 0x80550c1d; // 2153057309 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_ARGUMENT = 0x80550c0a; // 2153057290 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_ATTRIBUTE_ID = 0x80550c11; // 2153057297 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_ATTRIBUTE_SIZE = 0x80550c38; // 2153057336 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_BLOCK_KICK_FLAG = 0x80550c17; // 2153057303 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_CASTTYPE = 0x80550c12; // 2153057298 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_CONTEXT_ID = 0x80550c0b; // 2153057291 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_LOBBY_ID = 0x80550c0e; // 2153057294 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_MATCHING_SPACE = 0x80550c16; // 2153057302 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_MAX_SLOT = 0x80550c14; // 2153057300 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_MEMBER_ID = 0x80550c10; // 2153057296 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_MESSAGE_TARGET = 0x80550c18; // 2153057304 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_OPT_SIZE = 0x80550c15; // 2153057301 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_REQUEST_PARAMETER = 0x80550c2e; // 2153057326 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_ROOM_ID = 0x80550c0f; // 2153057295 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_SERVER_ID = 0x80550c0c; // 2153057292 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_SESSION_TYPE = 0x80550c25; // 2153057317 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_SLOTGROUP = 0x80550c37; // 2153057335 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_SORT_METHOD = 0x80550c13; // 2153057299 +constexpr int ORBIS_NP_MATCHING2_ERROR_INVALID_WORLD_ID = 0x80550c0d; // 2153057293 +constexpr int ORBIS_NP_MATCHING2_ERROR_JOINED_SESSION_MAX = 0x80550c23; // 2153057315 +constexpr int ORBIS_NP_MATCHING2_ERROR_KEEPALIVE_TIMEOUT = 0x80550c34; // 2153057332 +constexpr int ORBIS_NP_MATCHING2_ERROR_LOBBY_MEMBER_NOT_FOUND = 0x80550c33; // 2153057331 +constexpr int ORBIS_NP_MATCHING2_ERROR_LOBBY_NOT_FOUND = 0x80550c32; // 2153057330 +constexpr int ORBIS_NP_MATCHING2_ERROR_NOT_ALLOWED = 0x80550c29; // 2153057321 +constexpr int ORBIS_NP_MATCHING2_ERROR_NOT_INITIALIZED = 0x80550c03; // 2153057283 +constexpr int ORBIS_NP_MATCHING2_ERROR_NOT_NP_SIGN_IN = 0x80550c2f; // 2153057327 +constexpr int ORBIS_NP_MATCHING2_ERROR_NP_SIGNED_OUT = 0x80550c26; // 2153057318 +constexpr int ORBIS_NP_MATCHING2_ERROR_OUT_OF_MEMORY = 0x80550c01; // 2153057281 +constexpr int ORBIS_NP_MATCHING2_ERROR_RANGE_FILTER_MAX = 0x80550c19; // 2153057305 +constexpr int ORBIS_NP_MATCHING2_ERROR_REQUEST_NOT_FOUND = 0x80550c2b; // 2153057323 +constexpr int ORBIS_NP_MATCHING2_ERROR_REQUEST_TIMEOUT = 0x80550c1c; // 2153057308 +constexpr int ORBIS_NP_MATCHING2_ERROR_ROOM_MEMBER_NOT_FOUND = 0x80550c31; // 2153057329 +constexpr int ORBIS_NP_MATCHING2_ERROR_ROOM_NOT_FOUND = 0x80550c30; // 2153057328 +constexpr int ORBIS_NP_MATCHING2_ERROR_SERVER_NOT_AVAILABLE = 0x80550c28; // 2153057320 +constexpr int ORBIS_NP_MATCHING2_ERROR_SERVER_NOT_FOUND = 0x80550c09; // 2153057289 +constexpr int ORBIS_NP_MATCHING2_ERROR_SESSION_DESTROYED = 0x80550c2c; // 2153057324 +constexpr int ORBIS_NP_MATCHING2_ERROR_SESSION_NOT_FOUND = 0x80550c3a; // 2153057338 +constexpr int ORBIS_NP_MATCHING2_ERROR_SSL_HANDSHAKE = 0x80550c20; // 2153057312 +constexpr int ORBIS_NP_MATCHING2_ERROR_SSL_RECV = 0x80550c22; // 2153057314 +constexpr int ORBIS_NP_MATCHING2_ERROR_SSL_SEND = 0x80550c21; // 2153057313 +constexpr int ORBIS_NP_MATCHING2_ERROR_SSL_VERIFY_FAILED = 0x80550c1f; // 2153057311 +constexpr int ORBIS_NP_MATCHING2_ERROR_TIMEDOUT = 0x80550c36; // 2153057334 +constexpr int ORBIS_NP_MATCHING2_ERROR_TIMEOUT_TOO_SHORT = 0x80550c35; // 2153057333 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_ALREADY_JOINED = 0x80550d30; // 2153057584 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_BAD_REQUEST = 0x80550d01; // 2153057537 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_BLOCKED = 0x80550d08; // 2153057544 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_BLOCKED_USER_IN_ROOM = 0x80550d33; // 2153057587 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_BUSY = 0x80550d03; // 2153057539 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_CLOSED = 0x80550d0f; // 2153057551 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_CONSOLE_BANNED = 0x80550d28; // 2153057576 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_DUPLICATE_GROUP_LABEL = 0x80550d2e; // 2153057582 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_END_OF_SERVICE = 0x80550d04; // 2153057540 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_ENTITLEMENT_REQUIRED = 0x80550d0d; // 2153057549 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_EXPIRED_TICKET = 0x80550d0c; // 2153057548 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_FORBIDDEN = 0x80550d07; // 2153057543 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_GROUP_FULL = 0x80550d1b; // 2153057563 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_GROUP_PASSWORD_MISMATCH = 0x80550d1d; // 2153057565 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_INTERNAL_SERVER_ERROR = 0x80550d05; // 2153057541 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_INVALID_GROUP_SLOT_NUM = 0x80550d2c; // 2153057580 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_INVALID_PASSWORD_SLOT_MASK = 0x80550d2d; // 2153057581 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_INVALID_SIGNATURE = 0x80550d0b; // 2153057547 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_INVALID_TICKET = 0x80550d0a; // 2153057546 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_LOBBY_ALREADY_EXIST = 0x80550d25; // 2153057573 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_LOBBY_FULL = 0x80550d18; // 2153057560 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_NAT_TYPE_MISMATCH = 0x80550d31; // 2153057585 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_NO_PASSWORD = 0x80550d2b; // 2153057579 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_NO_ROOMGROUP = 0x80550d29; // 2153057577 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_NO_SUCH_CONTEXT = 0x80550d0e; // 2153057550 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_NO_SUCH_GROUP = 0x80550d2a; // 2153057578 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_NO_SUCH_LOBBY = 0x80550d12; // 2153057554 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_NO_SUCH_LOBBY_INSTANCE = 0x80550d14; // 2153057556 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_NO_SUCH_ROOM = 0x80550d13; // 2153057555 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_NO_SUCH_ROOM_INSTANCE = 0x80550d15; // 2153057557 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_NO_SUCH_TITLE = 0x80550d10; // 2153057552 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_NO_SUCH_USER = 0x80550d1c; // 2153057564 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_NO_SUCH_WORLD = 0x80550d11; // 2153057553 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_PASSWORD_MISMATCH = 0x80550d17; // 2153057559 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_PLAYER_BANNED = 0x80550d06; // 2153057542 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_REQUEST_OVERFLOW = 0x80550d2f; // 2153057583 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_ROOM_ALREADY_EXIST = 0x80550d26; // 2153057574 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_ROOM_FULL = 0x80550d19; // 2153057561 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_ROOM_INCONSISTENCY = 0x80550d32; // 2153057586 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_SERVICE_UNAVAILABLE = 0x80550d02; // 2153057538 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_TITLE_PASSPHRASE_MISMATCH = 0x80550d1e; // 2153057566 +constexpr int ORBIS_NP_MATCHING2_SERVER_ERROR_UNSUPPORTED_NP_ENV = 0x80550d09; // 2153057545 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_ALREADY_INITIALIZED = 0x80550e02; // 2153057794 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_CONN_IN_PROGRESS = 0x80550e14; // 2153057812 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_CONN_NOT_FOUND = 0x80550e0e; // 2153057806 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_CONNID_NOT_AVAILABLE = 0x80550e0d; // 2153057805 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_CTX_MAX = 0x80550e12; // 2153057810 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_CTX_NOT_FOUND = 0x80550e05; // 2153057797 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_CTXID_NOT_AVAILABLE = 0x80550e04; // 2153057796 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_INVALID_ARGUMENT = 0x80550e15; // 2153057813 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_INVALID_NAMESPACE = 0x80550e0a; // 2153057802 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_MATCHING2_PEER_NOT_FOUND = + 0x80550e19; // 2153057817 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_NETINFO_NOT_AVAILABLE = 0x80550e0b; // 2153057803 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_NOT_INITIALIZED = 0x80550e01; // 2153057793 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_OUT_OF_MEMORY = 0x80550e03; // 2153057795 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_OWN_NP_ID = 0x80550e16; // 2153057814 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_PARSER_CREATE_FAILED = 0x80550e08; // 2153057800 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_PARSER_FAILED = 0x80550e09; // 2153057801 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_PEER_NOT_RESPONDING = 0x80550e0c; // 2153057804 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_PEER_UNREACHABLE = 0x80550e0f; // 2153057807 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_REQ_NOT_FOUND = 0x80550e07; // 2153057799 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_REQID_NOT_AVAILABLE = 0x80550e06; // 2153057798 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_RESULT_NOT_FOUND = 0x80550e13; // 2153057811 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_TERMINATED_BY_MYSELF = 0x80550e18; // 2153057816 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_TERMINATED_BY_PEER = 0x80550e10; // 2153057808 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_TIMEOUT = 0x80550e11; // 2153057809 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_ERROR_TOO_MANY_CONN = 0x80550e17; // 2153057815 +constexpr int ORBIS_NP_MATCHING2_SIGNALING_INTERNAL_ERROR_CONN_NOT_ACTIVATED = + 0x80559901; // 2153093377 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_ALREADY_INITIALIZED = 0x80559202; // 2153091586 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_BANNED = 0x80559212; // 2153091602 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_BLOCK_LIST = 0x80559213; // 2153091603 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_BLOCKLIST_IN_PROGRESS = 0x80559220; // 2153091616 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_BLOCKLIST_RETREIVAL_FAILED = + 0x80559225; // 2153091621 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_CONNECTION_SIGNED_OUT = 0x80559211; // 2153091601 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_CONNECTION_TERMINATED = 0x8055920f; // 2153091599 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_CONNECTION_TIMED_OUT = 0x80559210; // 2153091600 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_CREATE_IN_PROGRESS = 0x8055921d; // 2153091613 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_CREATE_JOIN_GENERAL = 0x8055920d; // 2153091597 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_IN_A_PARTY = 0x80559222; // 2153091618 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_INVALID_ARGUMENT = 0x80559204; // 2153091588 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_INVALID_BLOCKLIST_STATUS_CODE = + 0x80559227; // 2153091623 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_INVALID_FRIENDSLIST_STATUS_CODE = + 0x80559228; // 2153091624 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_INVALID_STATE = 0x80559206; // 2153091590 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_INVALID_WEBAPI_STATUS_CODE = + 0x80559226; // 2153091622 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_INVITE_IN_PROGRESS = 0x8055922c; // 2153091628 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_JOIN_GENERAL = 0x8055920c; // 2153091596 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_JOIN_IN_PROGRESS = 0x8055921e; // 2153091614 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_KICK_IN_PROGRESS = 0x80559221; // 2153091617 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_LEAVE_IN_PROGRESS = 0x8055921f; // 2153091615 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_M2_CONTEXT_IN_PROGRESS = 0x80559229; // 2153091625 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_MATCHING2_CONNECTION_LOST = + 0x8055921a; // 2153091610 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_MATCHING2_ERROR = 0x8055920a; // 2153091594 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_NO_FRIENDS_IN_A_PARTY = 0x80559219; // 2153091609 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_NO_IP_ADDRESS = 0x80559224; // 2153091620 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_NO_SUCH_ROOM = 0x80559209; // 2153091593 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_NO_SUCH_USER = 0x80559214; // 2153091604 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_NOT_IN_A_PARTY = 0x80559223; // 2153091619 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_NOT_INITIALIZED = 0x80559203; // 2153091587 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_NP_INVALID_USER = 0x80559218; // 2153091608 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_NP_STATE_SIGNED_OUT = 0x80559217; // 2153091607 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_NP_STATE_UNKNOWN = 0x80559216; // 2153091606 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_OUT_OF_MEMORY = 0x80559205; // 2153091589 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_PARENTAL_CHECK_CONTROL_FAILED = + 0x8055922b; // 2153091627 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_PARENTAL_CHECK_CONTROL_IN_PROGRESS = + 0x8055922a; // 2153091626 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_REQUEST_PENDING = 0x8055920b; // 2153091595 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_ROOM_FULL = 0x80559208; // 2153091592 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_SEND_BUSY = 0x80559215; // 2153091605 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_SERVER_MAINTENANCE = 0x8055920e; // 2153091598 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_UNKNOWN = 0x80559201; // 2153091585 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_UNKNOWN_NPID = 0x80559207; // 2153091591 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_VULGAR_CHAT_MSG = 0x8055921b; // 2153091611 +constexpr int ORBIS_NP_PARTY_API_FOR_SHELL_ERROR_VULGAR_LOOKUP = 0x8055921c; // 2153091612 +constexpr int ORBIS_NP_PARTY_ERROR_ALREADY_INITIALIZED = 0x80552502; // 2153063682 +constexpr int ORBIS_NP_PARTY_ERROR_INVALID_ARGUMENT = 0x80552504; // 2153063684 +constexpr int ORBIS_NP_PARTY_ERROR_INVALID_LOCAL_PARTY_MEMBER = 0x80552512; // 2153063698 +constexpr int ORBIS_NP_PARTY_ERROR_INVALID_PROCESS_TYPE = 0x80552513; // 2153063699 +constexpr int ORBIS_NP_PARTY_ERROR_INVALID_STATE = 0x80552511; // 2153063697 +constexpr int ORBIS_NP_PARTY_ERROR_MEMBER_NOT_FOUND = 0x80552508; // 2153063688 +constexpr int ORBIS_NP_PARTY_ERROR_NOT_IN_PARTY = 0x80552506; // 2153063686 +constexpr int ORBIS_NP_PARTY_ERROR_NOT_INITIALIZED = 0x80552503; // 2153063683 +constexpr int ORBIS_NP_PARTY_ERROR_OUT_OF_MEMORY = 0x80552505; // 2153063685 +constexpr int ORBIS_NP_PARTY_ERROR_SEND_BUSY = 0x80552509; // 2153063689 +constexpr int ORBIS_NP_PARTY_ERROR_SEND_OUT_OF_CONTEXT = 0x80552510; // 2153063696 +constexpr int ORBIS_NP_PARTY_ERROR_UNKNOWN = 0x80552501; // 2153063681 +constexpr int ORBIS_NP_PARTY_ERROR_VOICE_NOT_ENABLED = 0x80552507; // 2153063687 +constexpr int ORBIS_NP_PLUS_LOGGER_ERROR_ABORTED = 0x8055a903; // 2153097475 +constexpr int ORBIS_NP_PLUS_LOGGER_ERROR_ALREADY_INITIALIZED = 0x8055a902; // 2153097474 +constexpr int ORBIS_NP_PLUS_LOGGER_ERROR_ALREADY_REGISTRED = 0x8055a908; // 2153097480 +constexpr int ORBIS_NP_PLUS_LOGGER_ERROR_BAD_RESPONSE = 0x8055a907; // 2153097479 +constexpr int ORBIS_NP_PLUS_LOGGER_ERROR_INTERNAL = 0x8055a904; // 2153097476 +constexpr int ORBIS_NP_PLUS_LOGGER_ERROR_INVALID_ARGUMENT = 0x8055a905; // 2153097477 +constexpr int ORBIS_NP_PLUS_LOGGER_ERROR_NO_SUCH_APPLICATION = 0x8055a90c; // 2153097484 +constexpr int ORBIS_NP_PLUS_LOGGER_ERROR_NO_SUCH_REQUEST = 0x8055a909; // 2153097481 +constexpr int ORBIS_NP_PLUS_LOGGER_ERROR_NO_SUCH_USER = 0x8055a90a; // 2153097482 +constexpr int ORBIS_NP_PLUS_LOGGER_ERROR_NOT_INITIALIZED = 0x8055a901; // 2153097473 +constexpr int ORBIS_NP_PLUS_LOGGER_ERROR_OUT_OF_MEMORY = 0x8055a906; // 2153097478 +constexpr int ORBIS_NP_PLUS_LOGGER_ERROR_TOO_MANY_APPLICATIONS = 0x8055a90d; // 2153097485 +constexpr int ORBIS_NP_PLUS_LOGGER_ERROR_TOO_MANY_USERS = 0x8055a90b; // 2153097483 +constexpr int ORBIS_NP_PRESENCE_ERROR_ABORTED = 0x8055a608; // 2153096712 +constexpr int ORBIS_NP_PRESENCE_ERROR_ALREADY_INITIALIZED = 0x8055a603; // 2153096707 +constexpr int ORBIS_NP_PRESENCE_ERROR_CALLBACK_QUEUE_OVERFLOW = 0x8055a606; // 2153096710 +constexpr int ORBIS_NP_PRESENCE_ERROR_INVALID_ARGUMENT = 0x8055a602; // 2153096706 +constexpr int ORBIS_NP_PRESENCE_ERROR_IPC_CONTEXT_NOT_FOUND = 0x8055a605; // 2153096709 +constexpr int ORBIS_NP_PRESENCE_ERROR_NOT_INITIALIZED = 0x8055a604; // 2153096708 +constexpr int ORBIS_NP_PRESENCE_ERROR_OUT_OF_MEMORY = 0x8055a601; // 2153096705 +constexpr int ORBIS_NP_PRESENCE_ERROR_REQUEST_NOT_FOUND = 0x8055a607; // 2153096711 +constexpr int ORBIS_NP_PUSH_ERROR_ABORTED = 0x8055a010; // 2153095184 +constexpr int ORBIS_NP_PUSH_ERROR_ALREADY_INITIALIZED = 0x8055a001; // 2153095169 +constexpr int ORBIS_NP_PUSH_ERROR_ALREADY_STARTED = 0x8055a008; // 2153095176 +constexpr int ORBIS_NP_PUSH_ERROR_CALLBACK_ALREADY_REGISTERED = 0x8055a027; // 2153095207 +constexpr int ORBIS_NP_PUSH_ERROR_DISCONNECTED = 0x8055a011; // 2153095185 +constexpr int ORBIS_NP_PUSH_ERROR_DISCONNECTED_INVALID_MSG = 0x8055a029; // 2153095209 +constexpr int ORBIS_NP_PUSH_ERROR_FIELD_NOT_FOUND = 0x8055a007; // 2153095175 +constexpr int ORBIS_NP_PUSH_ERROR_INTERNAL = 0x8055a000; // 2153095168 +constexpr int ORBIS_NP_PUSH_ERROR_INVALID_ARGUMENT = 0x8055a003; // 2153095171 +constexpr int ORBIS_NP_PUSH_ERROR_INVALID_CTL_STATE = 0x8055a00b; // 2153095179 +constexpr int ORBIS_NP_PUSH_ERROR_INVALID_LOGIN_TIME = 0x8055a022; // 2153095202 +constexpr int ORBIS_NP_PUSH_ERROR_INVALID_RESPONSE = 0x8055a005; // 2153095173 +constexpr int ORBIS_NP_PUSH_ERROR_INVALID_SESSION_STATE = 0x8055a00c; // 2153095180 +constexpr int ORBIS_NP_PUSH_ERROR_INVALID_TRAN_ID = 0x8055a01b; // 2153095195 +constexpr int ORBIS_NP_PUSH_ERROR_IPC_PROCESS_CONTEXT_NOT_FOUND = 0x8055a016; // 2153095190 +constexpr int ORBIS_NP_PUSH_ERROR_IPC_QUEUE_FULL = 0x8055a019; // 2153095193 +constexpr int ORBIS_NP_PUSH_ERROR_IPC_USER_CONTEXT_NOT_FOUND = 0x8055a017; // 2153095191 +constexpr int ORBIS_NP_PUSH_ERROR_NETWORK_NOT_AVAILABLE = 0x8055a02a; // 2153095210 +constexpr int ORBIS_NP_PUSH_ERROR_NO_PACKET = 0x8055a018; // 2153095192 +constexpr int ORBIS_NP_PUSH_ERROR_NO_SIGNEDIN_USER = 0x8055a00f; // 2153095183 +constexpr int ORBIS_NP_PUSH_ERROR_NOT_INITIALIZED = 0x8055a002; // 2153095170 +constexpr int ORBIS_NP_PUSH_ERROR_NOT_SIGNED_IN = 0x8055a02b; // 2153095211 +constexpr int ORBIS_NP_PUSH_ERROR_NOT_STARTED = 0x8055a009; // 2153095177 +constexpr int ORBIS_NP_PUSH_ERROR_OUT_OF_MEMORY = 0x8055a004; // 2153095172 +constexpr int ORBIS_NP_PUSH_ERROR_PARSE_ERROR_SOURCE = 0x8055a01d; // 2153095197 +constexpr int ORBIS_NP_PUSH_ERROR_PARSE_PACKET = 0x8055a006; // 2153095174 +constexpr int ORBIS_NP_PUSH_ERROR_PARSE_QUERY_TYPE = 0x8055a01e; // 2153095198 +constexpr int ORBIS_NP_PUSH_ERROR_PARSE_RETRY_INTERVAL = 0x8055a028; // 2153095208 +constexpr int ORBIS_NP_PUSH_ERROR_PARSE_RETURN_CODE = 0x8055a01c; // 2153095196 +constexpr int ORBIS_NP_PUSH_ERROR_QUERY_RESPONSE_CLIENT_ERROR = 0x8055a01f; // 2153095199 +constexpr int ORBIS_NP_PUSH_ERROR_QUERY_RESPONSE_INVALID_ERROR_SOURCE = 0x8055a020; // 2153095200 +constexpr int ORBIS_NP_PUSH_ERROR_QUERY_RESPONSE_INVALID_QUERY_TYPE = 0x8055a021; // 2153095201 +constexpr int ORBIS_NP_PUSH_ERROR_REQUEST_TIMEOUT = 0x8055a012; // 2153095186 +constexpr int ORBIS_NP_PUSH_ERROR_SERVER_ERROR = 0x8055a00e; // 2153095182 +constexpr int ORBIS_NP_PUSH_ERROR_SERVICE_BASE_URL_NOT_FOUND = 0x8055a025; // 2153095205 +constexpr int ORBIS_NP_PUSH_ERROR_SESSION_NOT_ESTABLISHED = 0x8055a01a; // 2153095194 +constexpr int ORBIS_NP_PUSH_ERROR_SESSION_NOT_FOUND = 0x8055a00a; // 2153095178 +constexpr int ORBIS_NP_PUSH_ERROR_STOPPED = 0x8055a015; // 2153095189 +constexpr int ORBIS_NP_PUSH_ERROR_TOO_LONG_DATATYPE = 0x8055a026; // 2153095206 +constexpr int ORBIS_NP_PUSH_ERROR_TOO_MANY_USERS = 0x8055a00d; // 2153095181 +constexpr int ORBIS_NP_PUSH_ERROR_UNKNOWN_BIND_USER_STATUS = 0x8055a02c; // 2153095212 +constexpr int ORBIS_NP_PUSH_ERROR_USER_NOT_FOUND = 0x8055a013; // 2153095187 +constexpr int ORBIS_NP_PUSH_ERROR_USER_NOT_ONLINE = 0x8055a014; // 2153095188 +constexpr int ORBIS_NP_PUSH_ERROR_USER_REQUEST_ABORTED = 0x8055a024; // 2153095204 +constexpr int ORBIS_NP_PUSH_ERROR_USER_REQUEST_TIMEOUT = 0x8055a023; // 2153095203 +constexpr int ORBIS_NP_SERVICE_CHECKER_ERROR_ABORTED = 0x8055ad04; // 2153098500 +constexpr int ORBIS_NP_SERVICE_CHECKER_ERROR_ALREADY_INITIALIZED = 0x8055ad01; // 2153098497 +constexpr int ORBIS_NP_SERVICE_CHECKER_ERROR_CONFLICT = 0x8055ad07; // 2153098503 +constexpr int ORBIS_NP_SERVICE_CHECKER_ERROR_FILE_MALFORMED = 0x8055ad09; // 2153098505 +constexpr int ORBIS_NP_SERVICE_CHECKER_ERROR_FILE_UNSUPPORTED = 0x8055ad0a; // 2153098506 +constexpr int ORBIS_NP_SERVICE_CHECKER_ERROR_HTTP_SERVER = 0x8055ad08; // 2153098504 +constexpr int ORBIS_NP_SERVICE_CHECKER_ERROR_INVALID_ARGUMENT = 0x8055ad0b; // 2153098507 +constexpr int ORBIS_NP_SERVICE_CHECKER_ERROR_INVALID_REQUEST_ID = 0x8055ad06; // 2153098502 +constexpr int ORBIS_NP_SERVICE_CHECKER_ERROR_NO_MEMORY = 0x8055ad03; // 2153098499 +constexpr int ORBIS_NP_SERVICE_CHECKER_ERROR_NOT_INITIALIZED = 0x8055ad02; // 2153098498 +constexpr int ORBIS_NP_SERVICE_CHECKER_ERROR_TOO_MANY_REQUEST = 0x8055ad05; // 2153098501 +constexpr int ORBIS_NP_SIGNALING_ERROR_ALREADY_INITIALIZED = 0x80552702; // 2153064194 +constexpr int ORBIS_NP_SIGNALING_ERROR_CONN_IN_PROGRESS = 0x80552714; // 2153064212 +constexpr int ORBIS_NP_SIGNALING_ERROR_CONN_NOT_FOUND = 0x8055270e; // 2153064206 +constexpr int ORBIS_NP_SIGNALING_ERROR_CONNID_NOT_AVAILABLE = 0x8055270d; // 2153064205 +constexpr int ORBIS_NP_SIGNALING_ERROR_CTX_MAX = 0x80552712; // 2153064210 +constexpr int ORBIS_NP_SIGNALING_ERROR_CTX_NOT_FOUND = 0x80552705; // 2153064197 +constexpr int ORBIS_NP_SIGNALING_ERROR_CTXID_NOT_AVAILABLE = 0x80552704; // 2153064196 +constexpr int ORBIS_NP_SIGNALING_ERROR_EXCEED_RATE_LIMIT = 0x8055271a; // 2153064218 +constexpr int ORBIS_NP_SIGNALING_ERROR_INVALID_ARGUMENT = 0x80552715; // 2153064213 +constexpr int ORBIS_NP_SIGNALING_ERROR_INVALID_NAMESPACE = 0x8055270a; // 2153064202 +constexpr int ORBIS_NP_SIGNALING_ERROR_NETINFO_NOT_AVAILABLE = 0x8055270b; // 2153064203 +constexpr int ORBIS_NP_SIGNALING_ERROR_NOT_INITIALIZED = 0x80552701; // 2153064193 +constexpr int ORBIS_NP_SIGNALING_ERROR_OUT_OF_MEMORY = 0x80552703; // 2153064195 +constexpr int ORBIS_NP_SIGNALING_ERROR_OWN_NP_ID = 0x80552716; // 2153064214 +constexpr int ORBIS_NP_SIGNALING_ERROR_PARSER_CREATE_FAILED = 0x80552708; // 2153064200 +constexpr int ORBIS_NP_SIGNALING_ERROR_PARSER_FAILED = 0x80552709; // 2153064201 +constexpr int ORBIS_NP_SIGNALING_ERROR_PEER_NOT_RESPONDING = 0x8055270c; // 2153064204 +constexpr int ORBIS_NP_SIGNALING_ERROR_PEER_UNREACHABLE = 0x8055270f; // 2153064207 +constexpr int ORBIS_NP_SIGNALING_ERROR_PROHIBITED_TO_USE = 0x80552719; // 2153064217 +constexpr int ORBIS_NP_SIGNALING_ERROR_REQ_NOT_FOUND = 0x80552707; // 2153064199 +constexpr int ORBIS_NP_SIGNALING_ERROR_REQID_NOT_AVAILABLE = 0x80552706; // 2153064198 +constexpr int ORBIS_NP_SIGNALING_ERROR_RESULT_NOT_FOUND = 0x80552713; // 2153064211 +constexpr int ORBIS_NP_SIGNALING_ERROR_TERMINATED_BY_MYSELF = 0x80552718; // 2153064216 +constexpr int ORBIS_NP_SIGNALING_ERROR_TERMINATED_BY_PEER = 0x80552710; // 2153064208 +constexpr int ORBIS_NP_SIGNALING_ERROR_TIMEOUT = 0x80552711; // 2153064209 +constexpr int ORBIS_NP_SIGNALING_ERROR_TOO_MANY_CONN = 0x80552717; // 2153064215 +constexpr int ORBIS_NP_SIGNALING_INTERNAL_ERROR_ALLOCATOR = 0x80559608; // 2153092616 +constexpr int ORBIS_NP_SIGNALING_INTERNAL_ERROR_ALREADY_INITIALIZED = 0x8055960a; // 2153092618 +constexpr int ORBIS_NP_SIGNALING_INTERNAL_ERROR_CALLBACK_QUEUE_OVERFLOW = 0x8055960f; // 2153092623 +constexpr int ORBIS_NP_SIGNALING_INTERNAL_ERROR_CONN_NOT_ACTIVATED = 0x80559604; // 2153092612 +constexpr int ORBIS_NP_SIGNALING_INTERNAL_ERROR_DATA_TOO_BIG = 0x80559602; // 2153092610 +constexpr int ORBIS_NP_SIGNALING_INTERNAL_ERROR_INVALID_ACTION = 0x80559603; // 2153092611 +constexpr int ORBIS_NP_SIGNALING_INTERNAL_ERROR_INVALID_ARGUMENT = 0x80559601; // 2153092609 +constexpr int ORBIS_NP_SIGNALING_INTERNAL_ERROR_INVALID_DATA_TYPE = 0x8055960e; // 2153092622 +constexpr int ORBIS_NP_SIGNALING_INTERNAL_ERROR_INVALID_NAMESPACE = 0x80559607; // 2153092615 +constexpr int ORBIS_NP_SIGNALING_INTERNAL_ERROR_IPC_CONTEXT_NOT_FOUND = 0x80559609; // 2153092617 +constexpr int ORBIS_NP_SIGNALING_INTERNAL_ERROR_NOT_INITIALIZED = 0x8055960b; // 2153092619 +constexpr int ORBIS_NP_SIGNALING_INTERNAL_ERROR_OUT_OF_MEMORY = 0x80559605; // 2153092613 +constexpr int ORBIS_NP_SIGNALING_INTERNAL_ERROR_PARSER_FAILED = 0x80559606; // 2153092614 +constexpr int ORBIS_NP_SIGNALING_INTERNAL_ERROR_XMPP_IPC_INVALID_ID = 0x8055960d; // 2153092621 +constexpr int ORBIS_NP_SIGNALING_INTERNAL_ERROR_XMPP_IPC_INVALID_MSG_TYPE = + 0x8055960c; // 2153092620 +constexpr int ORBIS_NP_SIGNALING_SERVER_ERROR_UNKNOWN = 0x80559681; // 2153092737 +constexpr int ORBIS_NP_SNS_ERROR_ACCOUNT_NOT_BOUND = 0x80559402; // 2153092098 +constexpr int ORBIS_NP_SNS_ERROR_INTERNAL = 0x80559400; // 2153092096 +constexpr int ORBIS_NP_SNS_ERROR_PERMISSION_NOT_ALLOWED = 0x80559401; // 2153092097 +constexpr int ORBIS_NP_SNS_ERROR_UNKNOWN_SERVER_ERROR = 0x80559403; // 2153092099 +constexpr int ORBIS_NP_SNS_FACEBOOK_DIALOG_ERROR_ACCESS_NOT_ALLOWED = 0x80db0003; // 2161836035 +constexpr int ORBIS_NP_SNS_FACEBOOK_DIALOG_ERROR_INTERNAL = 0x80db0001; // 2161836033 +constexpr int ORBIS_NP_SNS_FACEBOOK_DIALOG_ERROR_NOT_SIGNIN = 0x80db0002; // 2161836034 +constexpr int ORBIS_NP_SNS_FACEBOOK_DIALOG_ERROR_UGM_RESTRICTION = 0x80db0004; // 2161836036 +constexpr int ORBIS_NP_SNS_FACEBOOK_ERROR_ABORTED = 0x80552606; // 2153063942 +constexpr int ORBIS_NP_SNS_FACEBOOK_ERROR_ACCOUNT_NOT_BOUND = 0x80552607; // 2153063943 +constexpr int ORBIS_NP_SNS_FACEBOOK_ERROR_CANCELED_BY_SYSTEM = 0x80552608; // 2153063944 +constexpr int ORBIS_NP_SNS_FACEBOOK_ERROR_EXCEEDS_MAX = 0x80552604; // 2153063940 +constexpr int ORBIS_NP_SNS_FACEBOOK_ERROR_INVALID_ARGUMENT = 0x80552602; // 2153063938 +constexpr int ORBIS_NP_SNS_FACEBOOK_ERROR_OUT_OF_MEMORY = 0x80552603; // 2153063939 +constexpr int ORBIS_NP_SNS_FACEBOOK_ERROR_SUB_ACCOUNT = 0x80552609; // 2153063945 +constexpr int ORBIS_NP_SNS_FACEBOOK_ERROR_UGM_RESTRICTION = 0x80552605; // 2153063941 +constexpr int ORBIS_NP_SNS_FACEBOOK_ERROR_UNKNOWN = 0x80552601; // 2153063937 +constexpr int ORBIS_NP_TICKET_PARSER_ERROR_ENTITLEMENT_NOT_FOUND = 0x8055a503; // 2153096451 +constexpr int ORBIS_NP_TICKET_PARSER_ERROR_PARAM_NOT_FOUND = 0x8055a502; // 2153096450 +constexpr int ORBIS_NP_TICKET_PARSER_ERROR_UNSUPPORTED_TICKET_VERSION = 0x8055a501; // 2153096449 +constexpr int ORBIS_NP_TITLE_METADATA_ERROR_ABORTED = 0x8055aa08; // 2153097736 +constexpr int ORBIS_NP_TITLE_METADATA_ERROR_ALREADY_INITIALIZED = 0x8055aa02; // 2153097730 +constexpr int ORBIS_NP_TITLE_METADATA_ERROR_BAD_RESPONSE = 0x8055aa0a; // 2153097738 +constexpr int ORBIS_NP_TITLE_METADATA_ERROR_BUSY = 0x8055aa07; // 2153097735 +constexpr int ORBIS_NP_TITLE_METADATA_ERROR_INTERNAL = 0x8055aa06; // 2153097734 +constexpr int ORBIS_NP_TITLE_METADATA_ERROR_INVALID_ARGUMENT = 0x8055aa03; // 2153097731 +constexpr int ORBIS_NP_TITLE_METADATA_ERROR_INVALID_SIZE = 0x8055aa04; // 2153097732 +constexpr int ORBIS_NP_TITLE_METADATA_ERROR_NO_SUCH_REQUEST = 0x8055aa09; // 2153097737 +constexpr int ORBIS_NP_TITLE_METADATA_ERROR_NOT_FOUND = 0x8055aa0c; // 2153097740 +constexpr int ORBIS_NP_TITLE_METADATA_ERROR_NOT_INITIALIZED = 0x8055aa01; // 2153097729 +constexpr int ORBIS_NP_TITLE_METADATA_ERROR_OUT_OF_MEMORY = 0x8055aa05; // 2153097733 +constexpr int ORBIS_NP_TITLE_METADATA_ERROR_PARSER_FAILED = 0x8055aa0b; // 2153097739 +constexpr int ORBIS_NP_UTIL_ERROR_ALREADY_INITIALIZED = 0x80559c00; // 2153094144 +constexpr int ORBIS_NP_UTIL_ERROR_INSUFFICIENT = 0x80550602; // 2153055746 +constexpr int ORBIS_NP_UTIL_ERROR_INTERNAL = 0x80559c04; // 2153094148 +constexpr int ORBIS_NP_UTIL_ERROR_INVALID_ARGUMENT = 0x80550601; // 2153055745 +constexpr int ORBIS_NP_UTIL_ERROR_INVALID_CHARACTER = 0x80550608; // 2153055752 +constexpr int ORBIS_NP_UTIL_ERROR_INVALID_NP_ENV = 0x80550606; // 2153055750 +constexpr int ORBIS_NP_UTIL_ERROR_INVALID_NP_ID = 0x80550605; // 2153055749 +constexpr int ORBIS_NP_UTIL_ERROR_INVALID_PROTOCOL_ID = 0x80550604; // 2153055748 +constexpr int ORBIS_NP_UTIL_ERROR_INVALID_TITLEID = 0x8055060a; // 2153055754 +constexpr int ORBIS_NP_UTIL_ERROR_NOT_INITIALIZED = 0x80559c01; // 2153094145 +constexpr int ORBIS_NP_UTIL_ERROR_NOT_MATCH = 0x80550609; // 2153055753 +constexpr int ORBIS_NP_UTIL_ERROR_NP_DEBUG_SETTING_OFF = 0x80559c05; // 2153094149 +constexpr int ORBIS_NP_UTIL_ERROR_PARSER_FAILED = 0x80550603; // 2153055747 +constexpr int ORBIS_NP_UTIL_ERROR_SERVER_ERROR_INVALID_HTTP_STATUS_CODE = 0x80559c03; // 2153094147 +constexpr int ORBIS_NP_UTIL_ERROR_SERVER_ERROR_PARSER_FAILED = 0x80559c02; // 2153094146 +constexpr int ORBIS_NP_UTIL_ERROR_UNKNOWN = 0x8055060e; // 2153055758 +constexpr int ORBIS_NP_WEB_SOCKET_ERROR_ABORTED = 0x80559f06; // 2153094918 +constexpr int ORBIS_NP_WEB_SOCKET_ERROR_ALREADY_INITIALIZED = 0x80559f01; // 2153094913 +constexpr int ORBIS_NP_WEB_SOCKET_ERROR_BAD_RESPONSE = 0x80559f09; // 2153094921 +constexpr int ORBIS_NP_WEB_SOCKET_ERROR_DISCONNECTED = 0x80559f0a; // 2153094922 +constexpr int ORBIS_NP_WEB_SOCKET_ERROR_HANDSHAKE_FAILED = 0x80559f08; // 2153094920 +constexpr int ORBIS_NP_WEB_SOCKET_ERROR_HTTP_STATUS_CODE_INVALID = 0x80559f07; // 2153094919 +constexpr int ORBIS_NP_WEB_SOCKET_ERROR_INTERNAL = 0x80559f00; // 2153094912 +constexpr int ORBIS_NP_WEB_SOCKET_ERROR_INVALID_ARGUMENT = 0x80559f03; // 2153094915 +constexpr int ORBIS_NP_WEB_SOCKET_ERROR_INVALID_OPERATION = 0x80559f05; // 2153094917 +constexpr int ORBIS_NP_WEB_SOCKET_ERROR_NO_SUCH_REQ_HEADER = 0x80559f0d; // 2153094925 +constexpr int ORBIS_NP_WEB_SOCKET_ERROR_NOT_INITIALIZED = 0x80559f02; // 2153094914 +constexpr int ORBIS_NP_WEB_SOCKET_ERROR_OUT_OF_MEMORY = 0x80559f04; // 2153094916 +constexpr int ORBIS_NP_WEB_SOCKET_ERROR_REQ_HEADER_OVER_MAX = 0x80559f0c; // 2153094924 +constexpr int ORBIS_NP_WEB_SOCKET_ERROR_RESPONSE_NOT_AVAILABLE = 0x80559f0e; // 2153094926 +constexpr int ORBIS_NP_WEB_SOCKET_ERROR_TIMEOUT = 0x80559f0b; // 2153094923 +constexpr int ORBIS_NP_WEBAPI_ERROR_ABORTED = 0x80552909; // 2153064713 +constexpr int ORBIS_NP_WEBAPI_ERROR_HANDLE_BUSY = 0x80552919; // 2153064729 +constexpr int ORBIS_NP_WEBAPI_ERROR_HANDLE_NOT_FOUND = 0x8055290d; // 2153064717 +constexpr int ORBIS_NP_WEBAPI_ERROR_INVALID_ARGUMENT = 0x80552902; // 2153064706 +constexpr int ORBIS_NP_WEBAPI_ERROR_INVALID_CONTENT_PARAMETER = 0x80552908; // 2153064712 +constexpr int ORBIS_NP_WEBAPI_ERROR_INVALID_HTTP_STATUS_CODE = 0x80552914; // 2153064724 +constexpr int ORBIS_NP_WEBAPI_ERROR_INVALID_LIB_CONTEXT_ID = 0x80552903; // 2153064707 +constexpr int ORBIS_NP_WEBAPI_ERROR_LIB_CONTEXT_BUSY = 0x80552911; // 2153064721 +constexpr int ORBIS_NP_WEBAPI_ERROR_LIB_CONTEXT_MAX = 0x8055291a; // 2153064730 +constexpr int ORBIS_NP_WEBAPI_ERROR_LIB_CONTEXT_NOT_FOUND = 0x80552904; // 2153064708 +constexpr int ORBIS_NP_WEBAPI_ERROR_MULTIPART_PART_NOT_FOUND = 0x80552917; // 2153064727 +constexpr int ORBIS_NP_WEBAPI_ERROR_NOT_SIGNED_IN = 0x80552907; // 2153064711 +constexpr int ORBIS_NP_WEBAPI_ERROR_OUT_OF_MEMORY = 0x80552901; // 2153064705 +constexpr int ORBIS_NP_WEBAPI_ERROR_PARAMETER_TOO_LONG = 0x80552918; // 2153064728 +constexpr int ORBIS_NP_WEBAPI_ERROR_PROHIBITED_FUNCTION_CALL = 0x80552916; // 2153064726 +constexpr int ORBIS_NP_WEBAPI_ERROR_PROHIBITED_HTTP_HEADER = 0x80552915; // 2153064725 +constexpr int ORBIS_NP_WEBAPI_ERROR_PUSH_EVENT_CALLBACK_NOT_FOUND = 0x8055290c; // 2153064716 +constexpr int ORBIS_NP_WEBAPI_ERROR_PUSH_EVENT_FILTER_NOT_FOUND = 0x8055290b; // 2153064715 +constexpr int ORBIS_NP_WEBAPI_ERROR_REQUEST_BUSY = 0x80552913; // 2153064723 +constexpr int ORBIS_NP_WEBAPI_ERROR_REQUEST_NOT_FOUND = 0x80552906; // 2153064710 +constexpr int ORBIS_NP_WEBAPI_ERROR_SERVICE_PUSH_EVENT_CALLBACK_NOT_FOUND = + 0x8055290f; // 2153064719 +constexpr int ORBIS_NP_WEBAPI_ERROR_SERVICE_PUSH_EVENT_FILTER_NOT_FOUND = 0x8055290e; // 2153064718 +constexpr int ORBIS_NP_WEBAPI_ERROR_SIGNED_IN_USER_NOT_FOUND = 0x80552910; // 2153064720 +constexpr int ORBIS_NP_WEBAPI_ERROR_USER_CONTEXT_ALREADY_EXIST = 0x8055290a; // 2153064714 +constexpr int ORBIS_NP_WEBAPI_ERROR_USER_CONTEXT_BUSY = 0x80552912; // 2153064722 +constexpr int ORBIS_NP_WEBAPI_ERROR_USER_CONTEXT_MAX = 0x8055291b; // 2153064731 +constexpr int ORBIS_NP_WEBAPI_ERROR_USER_CONTEXT_NOT_FOUND = 0x80552905; // 2153064709 +constexpr int ORBIS_NP_WEBAPI_INTERNAL_ERROR_INVALID_LANG_ID = 0x8055a403; // 2153096195 +constexpr int ORBIS_NP_WEBAPI_INTERNAL_ERROR_NO_PERMISSION_FOR_CALL_FUNC = 0x8055a402; // 2153096194 +constexpr int ORBIS_NP_WEBAPI_INTERNAL_ERROR_PARSER_FAILED = 0x8055a401; // 2153096193 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_CLIENT_ERROR = 0x82302f09; // 2184195849 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_CONTENT_NOT_FOUND = + 0x82302f63; // 2184195939 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_HTTP_NOT_IMPLEMENTED = + 0x82302f69; // 2184195945 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_INTERNAL_ERROR = 0x82302f02; // 2184195842 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_INVALID_ASPECT_RATIO = + 0x82302f39; // 2184195897 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_INVALID_JSON = 0x82302f38; // 2184195896 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_INVALID_PARAMETER = + 0x82302f05; // 2184195845 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_INVALID_POST_OR_STORY = + 0x82302f3b; // 2184195899 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_INVALID_PSN_ACCESS_TOKEN = + 0x82302f12; // 2184195858 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_INVALID_REQUEST = 0x82302f01; // 2184195841 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_NO_FEED_CONTENT = 0x82302f32; // 2184195890 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_NOT_AUTHORIZED = 0x82302f64; // 2184195940 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_NOT_IMPLEMENTED = 0x82302f07; // 2184195847 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_ONLINE_ID_NOT_SET = + 0x82302f3a; // 2184195898 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_POST_RATE_LIMIT_EXCEEDED = + 0x82302f31; // 2184195889 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_PRIVACY_VIOLATION = + 0x82302f14; // 2184195860 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_REQUEST_TOO_LONG = + 0x82302f67; // 2184195943 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_REQUEST_URI_TOO_LONG = + 0x82302f68; // 2184195944 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_SERVER_ERROR = 0x82302f08; // 2184195848 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_SERVICE_UNAVAILABLE = + 0x82302f03; // 2184195843 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_TITLE_ID_DOES_NOT_MATCH = + 0x82302f35; // 2184195893 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ACTIVITY_FEED_UNSUPPORTED_MEDIA_TYPE = + 0x82302f0a; // 2184195850 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_ACCESS_DENIED_BY_PRIVACY_LEVEL = + 0x8220020c; // 2183135756 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_ACCESS_DENIED_BY_RESOURCE_OWNERSHIP = + 0x8220000e; // 2183135246 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_ACCESS_DENIED_DUE_TO_TITILE_MISMATCH = + 0x8220020a; // 2183135754 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_ACCESS_TOKEN_REQUIRED = 0x82200200; // 2183135744 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_AUTHORIZATION_SERVER_ERROR = + 0x82200304; // 2183136004 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_BAD_REQUEST = 0x82200001; // 2183135233 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_BANNED_APPLICATION = 0x82200207; // 2183135751 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_BANNED_DEVICE = 0x82200209; // 2183135753 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_BANNED_USER = 0x82200208; // 2183135752 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_BLOCKED_USER_EXISTS = 0x82200185; // 2183135621 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_EXPIRED_ACCESS_TOKEN = 0x82200202; // 2183135746 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_EXPIRED_NP_TITLE_TOKEN = 0x82200205; // 2183135749 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_HEADER_REQUIRED = 0x82200141; // 2183135553 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INTERNAL_SERVER_ERROR = 0x82200301; // 2183136001 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_ACCESS_TOKEN = 0x82200201; // 2183135745 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_API_GROUP = 0x82200400; // 2183136256 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_BODY = 0x82200180; // 2183135616 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_BODY_PARAMETER = 0x82200182; // 2183135618 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_BODY_PARAMETER_COMBINATION = + 0x82200184; // 2183135620 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_BODY_PARAMETER_LIST_LENGTH = + 0x82200183; // 2183135619 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_HEADER = 0x82200140; // 2183135552 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_MULTIPART_HEADER = 0x82200187; // 2183135623 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_NP_COMMUNICATION_ID = + 0x82200007; // 2183135239 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_NP_ENVIRONMENT = 0x82200004; // 2183135236 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_NP_SERVICE_LABEL = 0x82200006; // 2183135238 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_NP_SERVICE_NAME = 0x82200009; // 2183135241 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_NP_TITLE_ID = 0x82200005; // 2183135237 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_NP_TITLE_TOKEN = 0x82200204; // 2183135748 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_OAUTH_CLIENT_ID = 0x8220000a; // 2183135242 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_PARAMETER_IN_URL = 0x82200104; // 2183135492 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_QUERY_PARAMETER = 0x82200101; // 2183135489 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_QUERY_PARAMETER_COMBINATION = + 0x82200102; // 2183135490 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_QUERY_STRING = 0x82200100; // 2183135488 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_INVALID_SERVICE_ID = 0x82200008; // 2183135240 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_MANDATORY_BODY_PARAMETER_MISSING = + 0x82200186; // 2183135622 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_MANDATORY_MULTIPART_HEADER_MISSING = + 0x82200188; // 2183135624 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_MANDATORY_QUERY_PARAMETER_MISSING = + 0x82200105; // 2183135493 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_NEED_TO_UPGRADE = 0x8220020e; // 2183135758 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_NOT_AUTHORIZED = 0x82200206; // 2183135750 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_NOT_AUTHORIZED_ACCESS_TOKEN = + 0x8220020d; // 2183135757 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_NOT_AUTHORIZED_APPLICATION = + 0x82200283; // 2183135875 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_NOT_AUTHORIZED_APPLICATION_TO_USE_THE_API_GROUP = + 0x82200401; // 2183136257 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_NOT_AUTHORIZED_ON_PLATFORM = + 0x8220020f; // 2183135759 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_NP_COMMUNICATION_ID_NOT_FOUND = + 0x82200284; // 2183135876 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_NP_SERVICE_LABEL_NOT_FOUND = + 0x82200282; // 2183135874 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_NP_TITLE_ID_NOT_FOUND = 0x82200281; // 2183135873 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_NP_TITLE_ID_NOT_MATCHING_TOKENS = + 0x8220000b; // 2183135243 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_NP_TITLE_TOKEN_REQUIRED = 0x82200203; // 2183135747 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_NULL_VALUE_NOT_ALLOWED = 0x82200181; // 2183135617 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_RATE_LIMIT_EXCEEDED = 0x8220020b; // 2183135755 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_RESOURCE_NOT_FOUND = 0x8220000d; // 2183135245 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_SERVER_BUSY = 0x82200303; // 2183136003 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_SERVICE_CLOSED = 0x82200341; // 2183136065 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_SERVICE_ID_NOT_FOUND = 0x82200285; // 2183135877 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_SERVICE_TEMPORARILY_UNAVAILABLE = + 0x82200302; // 2183136002 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_TOO_LARGE_BODY = 0x82200003; // 2183135235 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_UNAVAILABLE_QUERY_PARAMETER_FOR_RESOURCE = + 0x82200103; // 2183135491 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_UNDER_MAINTENANCE = 0x82200340; // 2183136064 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_UNEXPECTED_ERROR = 0x82200300; // 2183136000 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_UNKNOWN_CLIENT = 0x82200280; // 2183135872 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_UNKNOWN_ERROR = 0x82200380; // 2183136128 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_UNSUPPORTED_API_VERSION = 0x82200002; // 2183135234 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_USER_NOT_FOUND = 0x8220000c; // 2183135244 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ASM_USERS_ACCESS_TOKEN_REQUIRED = + 0x82200210; // 2183135760 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_COMMERCE_CLIENT_ERROR = 0x82304f09; // 2184204041 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_COMMERCE_DATA_ACCESS_ERROR = 0x82304f06; // 2184204038 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_COMMERCE_FORBIDDEN = 0x82304f66; // 2184204134 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_COMMERCE_HTTP_NOT_IMPLEMENTED = 0x82304f69; // 2184204137 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_COMMERCE_INTERNAL_ERROR = 0x82304f02; // 2184204034 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_COMMERCE_INVALID_PARAMETER = 0x82304f05; // 2184204037 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_COMMERCE_INVALID_PSN_ACCESS_TOKEN = + 0x82304f12; // 2184204050 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_COMMERCE_INVALID_REQUEST = 0x82304f01; // 2184204033 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_COMMERCE_NOT_ALLOWED = 0x82304f65; // 2184204133 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_COMMERCE_NOT_AUTHORIZED = 0x82304f64; // 2184204132 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_COMMERCE_NOT_IMPLEMENTED = 0x82304f07; // 2184204039 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_COMMERCE_REQUEST_TOO_LONG = 0x82304f67; // 2184204135 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_COMMERCE_REQUEST_URI_TOO_LONG = 0x82304f68; // 2184204136 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_COMMERCE_RESOURCE_NOT_FOUND = 0x82304f04; // 2184204036 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_COMMERCE_SERVER_ERROR = 0x82304f08; // 2184204040 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_COMMERCE_SERVICE_UNAVAILABLE = 0x82304f03; // 2184204035 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_COMMERCE_UNSUPPORTED_MEDIA_TYPE = + 0x82304f0a; // 2184204042 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ENTITLEMENTS_CLIENT_ERROR = 0x82303f09; // 2184199945 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ENTITLEMENTS_DATA_ACCESS_ERROR = + 0x82303f06; // 2184199942 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ENTITLEMENTS_FORBIDDEN = 0x82303f66; // 2184200038 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ENTITLEMENTS_HTTP_NOT_IMPLEMENTED = + 0x82303f69; // 2184200041 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ENTITLEMENTS_INTERNAL_ERROR = 0x82303f02; // 2184199938 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ENTITLEMENTS_INVALID_PARAMETER = + 0x82303f05; // 2184199941 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ENTITLEMENTS_INVALID_PSN_ACCESS_TOKEN = + 0x82303f12; // 2184199954 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ENTITLEMENTS_INVALID_REQUEST = 0x82303f01; // 2184199937 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ENTITLEMENTS_NOT_ALLOWED = 0x82303f65; // 2184200037 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ENTITLEMENTS_NOT_AUTHORIZED = 0x82303f64; // 2184200036 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ENTITLEMENTS_NOT_IMPLEMENTED = 0x82303f07; // 2184199943 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ENTITLEMENTS_REQUEST_TOO_LONG = 0x82303f67; // 2184200039 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ENTITLEMENTS_REQUEST_URI_TOO_LONG = + 0x82303f68; // 2184200040 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ENTITLEMENTS_RESOURCE_NOT_FOUND = + 0x82303f04; // 2184199940 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ENTITLEMENTS_SERVER_ERROR = 0x82303f08; // 2184199944 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ENTITLEMENTS_SERVICE_UNAVAILABLE = + 0x82303f03; // 2184199939 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_ENTITLEMENTS_UNSUPPORTED_MEDIA_TYPE = + 0x82303f0a; // 2184199946 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_ACCESS_DENIED_BY_PRIVACY_LEVEL = + 0x8220520c; // 2183156236 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_ACCESS_DENIED_BY_RESOURCE_OWNERSHIP = + 0x8220500e; // 2183155726 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_ACCESS_DENIED_DUE_TO_TITILE_MISMATCH = + 0x8220520a; // 2183156234 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_ACCESS_TOKEN_REQUIRED = + 0x82205200; // 2183156224 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_ALREADY_USED_GAME_CUSTOM_DATA = + 0x82205801; // 2183157761 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_AUTHORIZATION_SERVER_ERROR = + 0x82205304; // 2183156484 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_BAD_REQUEST = 0x82205001; // 2183155713 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_BANNED_APPLICATION = + 0x82205207; // 2183156231 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_BANNED_DEVICE = + 0x82205209; // 2183156233 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_BANNED_USER = 0x82205208; // 2183156232 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_BLOCKED_USER_EXISTS = + 0x82205185; // 2183156101 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_EXPIRED_ACCESS_TOKEN = + 0x82205202; // 2183156226 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_EXPIRED_GAME_CUSTOM_DATA = + 0x82205800; // 2183157760 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_EXPIRED_NP_TITLE_TOKEN = + 0x82205205; // 2183156229 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_HEADER_REQUIRED = + 0x82205141; // 2183156033 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INTERNAL_SERVER_ERROR = + 0x82205301; // 2183156481 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_ACCESS_TOKEN = + 0x82205201; // 2183156225 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_BODY = 0x82205180; // 2183156096 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_BODY_PARAMETER = + 0x82205182; // 2183156098 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_BODY_PARAMETER_COMBINATION = + 0x82205184; // 2183156100 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_BODY_PARAMETER_LIST_LENGTH = + 0x82205183; // 2183156099 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_HEADER = + 0x82205140; // 2183156032 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_MULTIPART_HEADER = + 0x82205187; // 2183156103 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_NP_COMMUNICATION_ID = + 0x82205007; // 2183155719 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_NP_ENVIRONMENT = + 0x82205004; // 2183155716 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_NP_SERVICE_LABEL = + 0x82205006; // 2183155718 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_NP_SERVICE_NAME = + 0x82205009; // 2183155721 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_NP_TITLE_ID = + 0x82205005; // 2183155717 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_NP_TITLE_TOKEN = + 0x82205204; // 2183156228 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_OAUTH_CLIENT_ID = + 0x8220500a; // 2183155722 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_PARAMETER_IN_URL = + 0x82205104; // 2183155972 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_QUERY_PARAMETER = + 0x82205101; // 2183155969 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_QUERY_PARAMETER_COMBINATION = + 0x82205102; // 2183155970 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_QUERY_STRING = + 0x82205100; // 2183155968 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_INVALID_SERVICE_ID = + 0x82205008; // 2183155720 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_MANDATORY_BODY_PARAMETER_MISSING = + 0x82205186; // 2183156102 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_MANDATORY_MULTIPART_HEADER_MISSING = + 0x82205188; // 2183156104 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_MANDATORY_QUERY_PARAMETER_MISSING = + 0x82205105; // 2183155973 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_NEED_TO_UPGRADE = + 0x8220520e; // 2183156238 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_NOT_AUTHORIZED = + 0x82205206; // 2183156230 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_NOT_AUTHORIZED_ACCESS_TOKEN = + 0x8220520d; // 2183156237 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_NOT_AUTHORIZED_APPLICATION = + 0x82205283; // 2183156355 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_NOT_AUTHORIZED_ON_PLATFORM = + 0x8220520f; // 2183156239 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_NP_COMMUNICATION_ID_NOT_FOUND = + 0x82205284; // 2183156356 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_NP_SERVICE_LABEL_NOT_FOUND = + 0x82205282; // 2183156354 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_NP_TITLE_ID_NOT_FOUND = + 0x82205281; // 2183156353 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_NP_TITLE_ID_NOT_MATCHING_TOKENS = + 0x8220500b; // 2183155723 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_NP_TITLE_TOKEN_REQUIRED = + 0x82205203; // 2183156227 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_NULL_VALUE_NOT_ALLOWED = + 0x82205181; // 2183156097 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_RATE_LIMIT_EXCEEDED = + 0x8220520b; // 2183156235 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_RESOURCE_NOT_FOUND = + 0x8220500d; // 2183155725 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_SERVER_BUSY = 0x82205303; // 2183156483 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_SERVICE_CLOSED = + 0x82205341; // 2183156545 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_SERVICE_ID_NOT_FOUND = + 0x82205285; // 2183156357 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_SERVICE_TEMPORARILY_UNAVAILABLE = + 0x82205302; // 2183156482 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_TOO_LARGE_BODY = + 0x82205003; // 2183155715 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_TOO_LARGE_IMAGE_DATA = + 0x82205400; // 2183156736 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_UNAVAILABLE_QUERY_PARAMETER_FOR_RESOURCE = + 0x82205103; // 2183155971 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_UNDER_MAINTENANCE = + 0x82205340; // 2183156544 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_UNEXPECTED_ERROR = + 0x82205300; // 2183156480 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_UNKNOWN_CLIENT = + 0x82205280; // 2183156352 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_UNKNOWN_ERROR = + 0x82205380; // 2183156608 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_UNSUPPORTED_API_VERSION = + 0x82205002; // 2183155714 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_USER_NOT_FOUND = + 0x8220500c; // 2183155724 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GAME_CUSTOM_DATA_USERS_ACCESS_TOKEN_REQUIRED = + 0x82205210; // 2183156240 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_ACCESS_DENIED_BY_PRIVACY_LEVEL = + 0x8220b20c; // 2183180812 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_ACCESS_DENIED_BY_RESOURCE_OWNERSHIP = + 0x8220b00e; // 2183180302 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_ACCESS_DENIED_DUE_TO_TITILE_MISMATCH = + 0x8220b20a; // 2183180810 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_ACCESS_TOKEN_REQUIRED = + 0x8220b200; // 2183180800 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_AUTHORIZATION_SERVER_ERROR = + 0x8220b304; // 2183181060 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_BAD_REQUEST = 0x8220b001; // 2183180289 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_BANNED_APPLICATION = + 0x8220b207; // 2183180807 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_BANNED_DEVICE = 0x8220b209; // 2183180809 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_BANNED_USER = 0x8220b208; // 2183180808 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_BLOCKED_USER_EXISTS = + 0x8220b185; // 2183180677 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_EXPIRED_ACCESS_TOKEN = + 0x8220b202; // 2183180802 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_EXPIRED_NP_TITLE_TOKEN = + 0x8220b205; // 2183180805 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_HEADER_REQUIRED = 0x8220b141; // 2183180609 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INTERNAL_SERVER_ERROR = + 0x8220b301; // 2183181057 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_ACCESS_TOKEN = + 0x8220b201; // 2183180801 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_BODY = 0x8220b180; // 2183180672 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_BODY_PARAMETER = + 0x8220b182; // 2183180674 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_BODY_PARAMETER_COMBINATION = + 0x8220b184; // 2183180676 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_BODY_PARAMETER_LIST_LENGTH = + 0x8220b183; // 2183180675 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_HEADER = 0x8220b140; // 2183180608 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_MULTIPART_HEADER = + 0x8220b187; // 2183180679 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_NP_COMMUNICATION_ID = + 0x8220b007; // 2183180295 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_NP_ENVIRONMENT = + 0x8220b004; // 2183180292 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_NP_SERVICE_LABEL = + 0x8220b006; // 2183180294 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_NP_SERVICE_NAME = + 0x8220b009; // 2183180297 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_NP_TITLE_ID = + 0x8220b005; // 2183180293 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_NP_TITLE_TOKEN = + 0x8220b204; // 2183180804 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_OAUTH_CLIENT_ID = + 0x8220b00a; // 2183180298 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_PARAMETER_IN_URL = + 0x8220b104; // 2183180548 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_QUERY_PARAMETER = + 0x8220b101; // 2183180545 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_QUERY_PARAMETER_COMBINATION = + 0x8220b102; // 2183180546 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_QUERY_STRING = + 0x8220b100; // 2183180544 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_INVALID_SERVICE_ID = + 0x8220b008; // 2183180296 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_MANDATORY_BODY_PARAMETER_MISSING = + 0x8220b186; // 2183180678 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_MANDATORY_MULTIPART_HEADER_MISSING = + 0x8220b188; // 2183180680 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_MANDATORY_QUERY_PARAMETER_MISSING = + 0x8220b105; // 2183180549 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_NEED_TO_UPGRADE = 0x8220b20e; // 2183180814 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_NOT_AUTHORIZED = 0x8220b206; // 2183180806 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_NOT_AUTHORIZED_ACCESS_TOKEN = + 0x8220b20d; // 2183180813 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_NOT_AUTHORIZED_APPLICATION = + 0x8220b283; // 2183180931 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_NOT_AUTHORIZED_ON_PLATFORM = + 0x8220b20f; // 2183180815 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_NP_COMMUNICATION_ID_NOT_FOUND = + 0x8220b284; // 2183180932 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_NP_SERVICE_LABEL_NOT_FOUND = + 0x8220b282; // 2183180930 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_NP_TITLE_ID_NOT_FOUND = + 0x8220b281; // 2183180929 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_NP_TITLE_ID_NOT_MATCHING_TOKENS = + 0x8220b00b; // 2183180299 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_NP_TITLE_TOKEN_REQUIRED = + 0x8220b203; // 2183180803 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_NULL_VALUE_NOT_ALLOWED = + 0x8220b181; // 2183180673 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_RATE_LIMIT_EXCEEDED = + 0x8220b20b; // 2183180811 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_RESOURCE_NOT_FOUND = + 0x8220b00d; // 2183180301 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_SERVER_BUSY = 0x8220b303; // 2183181059 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_SERVICE_CLOSED = 0x8220b341; // 2183181121 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_SERVICE_ID_NOT_FOUND = + 0x8220b285; // 2183180933 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_SERVICE_TEMPORARILY_UNAVAILABLE = + 0x8220b302; // 2183181058 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_TOO_LARGE_BODY = 0x8220b003; // 2183180291 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_UNAVAILABLE_QUERY_PARAMETER_FOR_RESOURCE = + 0x8220b103; // 2183180547 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_UNDER_MAINTENANCE = + 0x8220b340; // 2183181120 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_UNEXPECTED_ERROR = 0x8220b300; // 2183181056 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_UNKNOWN_CLIENT = 0x8220b280; // 2183180928 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_UNKNOWN_ERROR = 0x8220b380; // 2183181184 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_UNSUPPORTED_API_VERSION = + 0x8220b002; // 2183180290 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_USER_NOT_FOUND = 0x8220b00c; // 2183180300 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GRIEF_REPORT_USERS_ACCESS_TOKEN_REQUIRED = + 0x8220b210; // 2183180816 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_ACCESS_DENIED_BY_PRIVACY_LEVEL = + 0x8220620c; // 2183160332 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_ACCESS_DENIED_BY_RESOURCE_OWNERSHIP = + 0x8220600e; // 2183159822 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_ACCESS_DENIED_DUE_TO_TITILE_MISMATCH = + 0x8220620a; // 2183160330 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_ACCESS_TOKEN_REQUIRED = + 0x82206200; // 2183160320 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_ALREADY_GROUP_MEMBER = + 0x82206803; // 2183161859 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_AUTHORIZATION_SERVER_ERROR = + 0x82206304; // 2183160580 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_BAD_REQUEST = 0x82206001; // 2183159809 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_BANNED_APPLICATION = + 0x82206207; // 2183160327 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_BANNED_DEVICE = 0x82206209; // 2183160329 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_BANNED_USER = 0x82206208; // 2183160328 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_BLOCKED_USER_EXISTS = + 0x82206185; // 2183160197 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_EXCEEDED_GROUP_MEMBERS_LIMIT = + 0x82206804; // 2183161860 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_EXPIRED_ACCESS_TOKEN = + 0x82206202; // 2183160322 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_EXPIRED_NP_TITLE_TOKEN = + 0x82206205; // 2183160325 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_HEADER_REQUIRED = + 0x82206141; // 2183160129 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INTERNAL_SERVER_ERROR = + 0x82206301; // 2183160577 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_ACCESS_TOKEN = + 0x82206201; // 2183160321 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_BODY = 0x82206180; // 2183160192 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_BODY_PARAMETER = + 0x82206182; // 2183160194 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_BODY_PARAMETER_COMBINATION = + 0x82206184; // 2183160196 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_BODY_PARAMETER_LIST_LENGTH = + 0x82206183; // 2183160195 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_HEADER = + 0x82206140; // 2183160128 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_MULTIPART_HEADER = + 0x82206187; // 2183160199 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_NP_COMMUNICATION_ID = + 0x82206007; // 2183159815 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_NP_ENVIRONMENT = + 0x82206004; // 2183159812 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_NP_SERVICE_LABEL = + 0x82206006; // 2183159814 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_NP_SERVICE_NAME = + 0x82206009; // 2183159817 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_NP_TITLE_ID = + 0x82206005; // 2183159813 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_NP_TITLE_TOKEN = + 0x82206204; // 2183160324 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_OAUTH_CLIENT_ID = + 0x8220600a; // 2183159818 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_PARAMETER_IN_URL = + 0x82206104; // 2183160068 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_QUERY_PARAMETER = + 0x82206101; // 2183160065 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_QUERY_PARAMETER_COMBINATION = + 0x82206102; // 2183160066 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_QUERY_STRING = + 0x82206100; // 2183160064 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_INVALID_SERVICE_ID = + 0x82206008; // 2183159816 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_MANDATORY_BODY_PARAMETER_MISSING = + 0x82206186; // 2183160198 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_MANDATORY_MULTIPART_HEADER_MISSING = + 0x82206188; // 2183160200 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_MANDATORY_QUERY_PARAMETER_MISSING = + 0x82206105; // 2183160069 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_NEED_TO_UPGRADE = + 0x8220620e; // 2183160334 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_NOT_AUTHORIZED = + 0x82206206; // 2183160326 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_NOT_AUTHORIZED_ACCESS_TOKEN = + 0x8220620d; // 2183160333 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_NOT_AUTHORIZED_APPLICATION = + 0x82206283; // 2183160451 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_NOT_AUTHORIZED_ON_PLATFORM = + 0x8220620f; // 2183160335 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_NP_COMMUNICATION_ID_NOT_FOUND = + 0x82206284; // 2183160452 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_NP_SERVICE_LABEL_NOT_FOUND = + 0x82206282; // 2183160450 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_NP_TITLE_ID_NOT_FOUND = + 0x82206281; // 2183160449 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_NP_TITLE_ID_NOT_MATCHING_TOKENS = + 0x8220600b; // 2183159819 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_NP_TITLE_TOKEN_REQUIRED = + 0x82206203; // 2183160323 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_NULL_VALUE_NOT_ALLOWED = + 0x82206181; // 2183160193 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_RATE_LIMIT_EXCEEDED = + 0x8220620b; // 2183160331 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_RESOURCE_NOT_FOUND = + 0x8220600d; // 2183159821 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_SERVER_BUSY = 0x82206303; // 2183160579 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_SERVICE_CLOSED = + 0x82206341; // 2183160641 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_SERVICE_ID_NOT_FOUND = + 0x82206285; // 2183160453 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_SERVICE_TEMPORARILY_UNAVAILABLE = + 0x82206302; // 2183160578 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_TOO_LARGE_BODY = + 0x82206003; // 2183159811 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_TOO_LARGE_IMAGE_DATA = + 0x82206400; // 2183160832 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_TOO_LARGE_VOICE_DATA = + 0x82206802; // 2183161858 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_UNAVAILABLE_QUERY_PARAMETER_FOR_RESOURCE = + 0x82206103; // 2183160067 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_UNDER_MAINTENANCE = + 0x82206340; // 2183160640 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_UNEXPECTED_ERROR = + 0x82206300; // 2183160576 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_UNKNOWN_CLIENT = + 0x82206280; // 2183160448 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_UNKNOWN_ERROR = 0x82206380; // 2183160704 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_UNSUPPORTED_API_VERSION = + 0x82206002; // 2183159810 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_USER_NOT_FOUND = + 0x8220600c; // 2183159820 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_GROUP_MESSAGING_USERS_ACCESS_TOKEN_REQUIRED = + 0x82206210; // 2183160336 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_100_CONTINUE = 0x82f00064; // 2196766820 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_101_SWITCHING_PROTOCOLS = + 0x82f00065; // 2196766821 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_102_PROCESSING = + 0x82f00066; // 2196766822 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_200_OK = 0x82f000c8; // 2196766920 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_201_CREATED = 0x82f000c9; // 2196766921 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_202_ACCEPTED = 0x82f000ca; // 2196766922 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_203_NON_AUTHORITATIVE_INFORMATION = + 0x82f000cb; // 2196766923 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_204_NO_CONTENT = + 0x82f000cc; // 2196766924 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_205_RESET_CONTENT = + 0x82f000cd; // 2196766925 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_206_PARTIAL_CONTENT = + 0x82f000ce; // 2196766926 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_207_MULTI_STATUS = + 0x82f000cf; // 2196766927 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_208_ALREADY_REPORTED = + 0x82f000d0; // 2196766928 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_226_IM_USED = 0x82f000e2; // 2196766946 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_300_MULTIPLE_CHOICES = + 0x82f0012c; // 2196767020 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_301_MOVED_PERMANENTLY = + 0x82f0012d; // 2196767021 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_302_FOUND = 0x82f0012e; // 2196767022 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_303_SEE_OTHER = + 0x82f0012f; // 2196767023 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_304_NOT_MODIFIED = + 0x82f00130; // 2196767024 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_305_USE_PROXY = + 0x82f00131; // 2196767025 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_306_SWITCH_PROXY = + 0x82f00132; // 2196767026 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_307_TEMPORARY_REDIRECT = + 0x82f00133; // 2196767027 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_308_PERMANENT_REDIRECT = + 0x82f00134; // 2196767028 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_400_BAD_REQUEST = + 0x82f00190; // 2196767120 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_401_UNAUTHORIZED = + 0x82f00191; // 2196767121 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_402_PAYMENT_REQUIRED = + 0x82f00192; // 2196767122 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_403_FORBIDDEN = + 0x82f00193; // 2196767123 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_404_NOT_FOUND = + 0x82f00194; // 2196767124 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_405_METHOD_NOT_ALLOWED = + 0x82f00195; // 2196767125 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_406_NOT_ACCEPTABLE = + 0x82f00196; // 2196767126 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_407_PROXY_AUTHENTICATION_REQUIRED = + 0x82f00197; // 2196767127 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_408_REQUEST_TIMEOUT = + 0x82f00198; // 2196767128 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_409_CONFLICT = 0x82f00199; // 2196767129 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_410_GONE = 0x82f0019a; // 2196767130 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_411_LENGTH_REQUIRED = + 0x82f0019b; // 2196767131 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_412_PRECONDITION_FAILED = + 0x82f0019c; // 2196767132 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_413_REQUEST_ENTITY_TOO_LARGE = + 0x82f0019d; // 2196767133 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_414_REQUEST_URI_TOO_LONG = + 0x82f0019e; // 2196767134 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_415_UNSUPPORTED_MEDIA_TYPE = + 0x82f0019f; // 2196767135 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_416_REQUESTED_RANGE_NOT_SATISFIABLE = + 0x82f001a0; // 2196767136 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_417_EXPECTATION_FAILED = + 0x82f001a1; // 2196767137 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_418_I_M_A_TEAPOT = + 0x82f001a2; // 2196767138 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_419_AUTHENTICATION_TIMEOUT = + 0x82f001a3; // 2196767139 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_420_METHOD_FAILURE_ENHANCE_YOUR_CALM = + 0x82f001a4; // 2196767140 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_422_UNPROCESSABLE_ENTITY = + 0x82f001a6; // 2196767142 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_423_LOCKED = 0x82f001a7; // 2196767143 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_424_FAILED_DEPENDENCY = + 0x82f001a8; // 2196767144 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_425_METHOD_FAILURE = + 0x82f001a9; // 2196767145 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_426_UNORDERED_COLLECTION = + 0x82f001aa; // 2196767146 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_427_UPGRADE_REQUIRED = + 0x82f001ab; // 2196767147 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_428_PRECONDITION_REQUIRED = + 0x82f001ac; // 2196767148 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_429_TOO_MANY_REQUESTS = + 0x82f001ad; // 2196767149 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_431_REQUEST_HEADER_FIELDS_TOO_LARGE = + 0x82f001af; // 2196767151 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_444_NO_RESPONSE = + 0x82f001bc; // 2196767164 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_449_RETRY_WITH = + 0x82f001c1; // 2196767169 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_450_BLOCKED_BY_WINDOWS_PARENTAL_CONTROLS = + 0x82f001c2; // 2196767170 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_451_UNAVAILABLE_FOR_LEGAL_REASONS = + 0x82f001c3; // 2196767171 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_499_CLIENT_CLOSED_REQUEST = + 0x82f001f3; // 2196767219 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_500_INTERNAL_SERVER_ERROR = + 0x82f001f4; // 2196767220 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_501_NOT_IMPLEMENTED = + 0x82f001f5; // 2196767221 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_502_BAD_GATEWAY = + 0x82f001f6; // 2196767222 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_503_SERVICE_UNAVAILABLE = + 0x82f001f7; // 2196767223 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_504_GATEWAY_TIMEOUT = + 0x82f001f8; // 2196767224 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_505_HTTP_VERSION_NOT_SUPPORTED = + 0x82f001f9; // 2196767225 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_506_VARIANT_ALSO_NEGOTIATES = + 0x82f001fa; // 2196767226 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_507_INSUFFICIENT_STORAGE = + 0x82f001fb; // 2196767227 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_508_LOOP_DETECTED = + 0x82f001fc; // 2196767228 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_509_BANDWIDTH_LIMIT_EXCEEDED = + 0x82f001fd; // 2196767229 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_510_NOT_EXTENDED = + 0x82f001fe; // 2196767230 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_511_NETWORK_AUTHENTICATION_REQUIRED = + 0x82f001ff; // 2196767231 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_522_CONNECTION_TIMED_OUT = + 0x82f0020a; // 2196767242 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_598_NETWORK_READ_TIMEOUT_ERROR = + 0x82f00256; // 2196767318 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_HTTP_STATUS_CODE_599_NETWORK_CONNECT_TIMEOUT_ERROR = + 0x82f00257; // 2196767319 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_ACCESS_DENIED_BY_PRIVACY_LEVEL = + 0x8220720c; // 2183164428 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_ACCESS_DENIED_BY_RESOURCE_OWNERSHIP = + 0x8220700e; // 2183163918 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_ACCESS_DENIED_DUE_TO_TITILE_MISMATCH = + 0x8220720a; // 2183164426 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_ACCESS_TOKEN_REQUIRED = + 0x82207200; // 2183164416 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_AUTHORIZATION_SERVER_ERROR = + 0x82207304; // 2183164676 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_BAD_REQUEST = 0x82207001; // 2183163905 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_BANNED_APPLICATION = + 0x82207207; // 2183164423 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_BANNED_DEVICE = + 0x82207209; // 2183164425 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_BANNED_USER = 0x82207208; // 2183164424 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_BLOCKED_USER_EXISTS = + 0x82207185; // 2183164293 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_EXPIRED_ACCESS_TOKEN = + 0x82207202; // 2183164418 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_EXPIRED_NP_TITLE_TOKEN = + 0x82207205; // 2183164421 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_HEADER_REQUIRED = + 0x82207141; // 2183164225 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INTERNAL_SERVER_ERROR = + 0x82207301; // 2183164673 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_ACCESS_TOKEN = + 0x82207201; // 2183164417 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_BODY = + 0x82207180; // 2183164288 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_BODY_PARAMETER = + 0x82207182; // 2183164290 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_BODY_PARAMETER_COMBINATION = + 0x82207184; // 2183164292 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_BODY_PARAMETER_LIST_LENGTH = + 0x82207183; // 2183164291 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_HEADER = + 0x82207140; // 2183164224 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_MULTIPART_HEADER = + 0x82207187; // 2183164295 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_NP_COMMUNICATION_ID = + 0x82207007; // 2183163911 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_NP_ENVIRONMENT = + 0x82207004; // 2183163908 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_NP_SERVICE_LABEL = + 0x82207006; // 2183163910 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_NP_SERVICE_NAME = + 0x82207009; // 2183163913 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_NP_TITLE_ID = + 0x82207005; // 2183163909 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_NP_TITLE_TOKEN = + 0x82207204; // 2183164420 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_OAUTH_CLIENT_ID = + 0x8220700a; // 2183163914 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_PARAMETER_IN_URL = + 0x82207104; // 2183164164 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_QUERY_PARAMETER = + 0x82207101; // 2183164161 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_QUERY_PARAMETER_COMBINATION = + 0x82207102; // 2183164162 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_QUERY_STRING = + 0x82207100; // 2183164160 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_INVALID_SERVICE_ID = + 0x82207008; // 2183163912 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_MANDATORY_BODY_PARAMETER_MISSING = + 0x82207186; // 2183164294 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_MANDATORY_MULTIPART_HEADER_MISSING = + 0x82207188; // 2183164296 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_MANDATORY_QUERY_PARAMETER_MISSING = + 0x82207105; // 2183164165 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_NEED_TO_UPGRADE = + 0x8220720e; // 2183164430 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_NOT_AUTHORIZED = + 0x82207206; // 2183164422 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_NOT_AUTHORIZED_ACCESS_TOKEN = + 0x8220720d; // 2183164429 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_NOT_AUTHORIZED_APPLICATION = + 0x82207283; // 2183164547 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_NOT_AUTHORIZED_ON_PLATFORM = + 0x8220720f; // 2183164431 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_NP_COMMUNICATION_ID_NOT_FOUND = + 0x82207284; // 2183164548 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_NP_SERVICE_LABEL_NOT_FOUND = + 0x82207282; // 2183164546 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_NP_TITLE_ID_NOT_FOUND = + 0x82207281; // 2183164545 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_NP_TITLE_ID_NOT_MATCHING_TOKENS = + 0x8220700b; // 2183163915 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_NP_TITLE_TOKEN_REQUIRED = + 0x82207203; // 2183164419 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_NULL_VALUE_NOT_ALLOWED = + 0x82207181; // 2183164289 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_RATE_LIMIT_EXCEEDED = + 0x8220720b; // 2183164427 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_RESOURCE_NOT_FOUND = + 0x8220700d; // 2183163917 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_SERVER_BUSY = 0x82207303; // 2183164675 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_SERVICE_CLOSED = + 0x82207341; // 2183164737 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_SERVICE_ID_NOT_FOUND = + 0x82207285; // 2183164549 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_SERVICE_TEMPORARILY_UNAVAILABLE = + 0x82207302; // 2183164674 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_TEMPLATE_NOT_PERMITTED = + 0x82207400; // 2183164928 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_TOO_LARGE_BODY = + 0x82207003; // 2183163907 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_UNAVAILABLE_QUERY_PARAMETER_FOR_RESOURCE = + 0x82207103; // 2183164163 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_UNDER_MAINTENANCE = + 0x82207340; // 2183164736 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_UNEXPECTED_ERROR = + 0x82207300; // 2183164672 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_UNKNOWN_CLIENT = + 0x82207280; // 2183164544 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_UNKNOWN_ERROR = + 0x82207380; // 2183164800 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_UNSUPPORTED_API_VERSION = + 0x82207002; // 2183163906 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_USER_NOT_FOUND = + 0x8220700c; // 2183163916 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_NOTIFICATION_LIST_USERS_ACCESS_TOKEN_REQUIRED = + 0x82207210; // 2183164432 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_1_INVALID_REQUEST = 0x82e00001; // 2195718145 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_100_PASSWORD_WAS_RESET_BY_SERVER = + 0x82e00064; // 2195718244 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_103_NEEDS_EULA_RE_AGREEMENT = + 0x82e00067; // 2195718247 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_18_NEEDS_SOFTWARE_UPDATE = + 0x82e00012; // 2195718162 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_2_UNKNOWN_ERROR_HAS_OCCURRED = + 0x82e00002; // 2195718146 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_20_UNMATCH_SIGN_IN_ID_OR_PASSWORD = + 0x82e00014; // 2195718164 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_27_ACCOUNT_HAS_BEEN_REMOVED_LOGICALLY = + 0x82e0001b; // 2195718171 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_28_ACCOUNT_HAS_BEEN_BANNED = + 0x82e0001c; // 2195718172 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_29_CONSOLE_HAS_BEEN_BANNED = + 0x82e0001d; // 2195718173 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4098_MANDATORY_PARAMETER_IS_MISSING = + 0x82e01002; // 2195722242 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4099_PARAMETER_IS_MALFORMED = + 0x82e01003; // 2195722243 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4102_BAD_CLIENT_CREDENTIALS = + 0x82e01006; // 2195722246 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4114_INSUFFICIENT_SCOPE = 0x82e01012; // 2195722258 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4130_QUERY_PARAMETERS_NOT_ALLOWED_FOR_POST = + 0x82e01022; // 2195722274 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4135_NEEDS_UPGRADE_TO_USE_PSN_SERVICE = + 0x82e01027; // 2195722279 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4150_INVALID_REQUEST = 0x82e01036; // 2195722294 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4151_UNAUTHORIZED_CLIENT = + 0x82e01037; // 2195722295 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4152_UNSUPPORTED_GRANT_TYPE = + 0x82e01038; // 2195722296 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4153_INVALID_SCOPE = 0x82e01039; // 2195722297 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4154_INVALID_CONSOLE_TOKEN = + 0x82e0103a; // 2195722298 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4155_TOKEN_IS_EXPIRED_OR_NOT_FOUND = + 0x82e0103b; // 2195722299 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4156_UNSUPPORTED_RESPONSE_TYPE = + 0x82e0103c; // 2195722300 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4157_SERVER_ERROR = 0x82e0103d; // 2195722301 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4158_TEMPORARILY_UNAVAILABLE = + 0x82e0103e; // 2195722302 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4159_INVALID_REFRESH_TOKEN = + 0x82e0103f; // 2195722303 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4160_NO_DETAILS_AVAILABLE = + 0x82e01040; // 2195722304 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4161_CLIENT_WAS_NOT_FOUND = + 0x82e01041; // 2195722305 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4162_ACCOUNT_MUST_BE_SUBACCOUNT_AND_NEEDS_EULA_RE_AGREEMENT = + 0x82e01042; // 2195722306 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4165_PASSWORD_WAS_PROBABLY_CHANGED = + 0x82e01045; // 2195722309 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4170_ACCESS_DENIED = 0x82e0104a; // 2195722314 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4171_TOKEN_IS_EXPIRED = 0x82e0104b; // 2195722315 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4172_TOKEN_IS_INVALID = 0x82e0104c; // 2195722316 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4173_INVALID_CLIENT = 0x82e0104d; // 2195722317 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4174_REDIRECT_URI_MISMATCH = + 0x82e0104e; // 2195722318 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4175_METHOD_NOT_ALLOWED = 0x82e0104f; // 2195722319 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4176_ACCOUNT_HAS_BEEN_BANNED = + 0x82e01050; // 2195722320 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4192_UNEXPECTED_PARAMETER = + 0x82e01060; // 2195722336 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4199_SERVICE_HAS_ENDED = 0x82e01067; // 2195722343 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_4202_SERVICE_IS_UNDER_MAINTENANCE = + 0x82e0106a; // 2195722346 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_51_ERROR_CODE_RESERVED_FOR_FUTURE_USE = + 0x82e00033; // 2195718195 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_100_CONTINUE = + 0x82e10064; // 2195783780 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_101_SWITCHING_PROTOCOLS = + 0x82e10065; // 2195783781 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_102_PROCESSING = + 0x82e10066; // 2195783782 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_200_OK = 0x82e100c8; // 2195783880 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_201_CREATED = + 0x82e100c9; // 2195783881 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_202_ACCEPTED = + 0x82e100ca; // 2195783882 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_203_NON_AUTHORITATIVE_INFORMATION = + 0x82e100cb; // 2195783883 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_204_NO_CONTENT = + 0x82e100cc; // 2195783884 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_205_RESET_CONTENT = + 0x82e100cd; // 2195783885 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_206_PARTIAL_CONTENT = + 0x82e100ce; // 2195783886 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_207_MULTI_STATUS = + 0x82e100cf; // 2195783887 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_208_ALREADY_REPORTED = + 0x82e100d0; // 2195783888 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_226_IM_USED = + 0x82e100e2; // 2195783906 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_300_MULTIPLE_CHOICES = + 0x82e1012c; // 2195783980 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_301_MOVED_PERMANENTLY = + 0x82e1012d; // 2195783981 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_302_FOUND = + 0x82e1012e; // 2195783982 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_303_SEE_OTHER = + 0x82e1012f; // 2195783983 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_304_NOT_MODIFIED = + 0x82e10130; // 2195783984 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_305_USE_PROXY = + 0x82e10131; // 2195783985 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_306_SWITCH_PROXY = + 0x82e10132; // 2195783986 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_307_TEMPORARY_REDIRECT = + 0x82e10133; // 2195783987 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_308_PERMANENT_REDIRECT = + 0x82e10134; // 2195783988 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_400_BAD_REQUEST = + 0x82e10190; // 2195784080 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_401_UNAUTHORIZED = + 0x82e10191; // 2195784081 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_402_PAYMENT_REQUIRED = + 0x82e10192; // 2195784082 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_403_FORBIDDEN = + 0x82e10193; // 2195784083 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_404_NOT_FOUND = + 0x82e10194; // 2195784084 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_405_METHOD_NOT_ALLOWED = + 0x82e10195; // 2195784085 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_406_NOT_ACCEPTABLE = + 0x82e10196; // 2195784086 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_407_PROXY_AUTHENTICATION_REQUIRED = + 0x82e10197; // 2195784087 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_408_REQUEST_TIMEOUT = + 0x82e10198; // 2195784088 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_409_CONFLICT = + 0x82e10199; // 2195784089 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_410_GONE = + 0x82e1019a; // 2195784090 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_411_LENGTH_REQUIRED = + 0x82e1019b; // 2195784091 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_412_PRECONDITION_FAILED = + 0x82e1019c; // 2195784092 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_413_REQUEST_ENTITY_TOO_LARGE = + 0x82e1019d; // 2195784093 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_414_REQUEST_URI_TOO_LONG = + 0x82e1019e; // 2195784094 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_415_UNSUPPORTED_MEDIA_TYPE = + 0x82e1019f; // 2195784095 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_416_REQUESTED_RANGE_NOT_SATISFIABLE = + 0x82e101a0; // 2195784096 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_417_EXPECTATION_FAILED = + 0x82e101a1; // 2195784097 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_418_I_M_A_TEAPOT = + 0x82e101a2; // 2195784098 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_419_AUTHENTICATION_TIMEOUT = + 0x82e101a3; // 2195784099 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_420_METHOD_FAILURE_ENHANCE_YOUR_CALM = + 0x82e101a4; // 2195784100 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_422_UNPROCESSABLE_ENTITY = + 0x82e101a6; // 2195784102 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_423_LOCKED = + 0x82e101a7; // 2195784103 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_424_FAILED_DEPENDENCY = + 0x82e101a8; // 2195784104 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_425_METHOD_FAILURE = + 0x82e101a9; // 2195784105 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_426_UNORDERED_COLLECTION = + 0x82e101aa; // 2195784106 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_427_UPGRADE_REQUIRED = + 0x82e101ab; // 2195784107 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_428_PRECONDITION_REQUIRED = + 0x82e101ac; // 2195784108 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_429_TOO_MANY_REQUESTS = + 0x82e101ad; // 2195784109 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_431_REQUEST_HEADER_FIELDS_TOO_LARGE = + 0x82e101af; // 2195784111 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_444_NO_RESPONSE = + 0x82e101bc; // 2195784124 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_449_RETRY_WITH = + 0x82e101c1; // 2195784129 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_450_BLOCKED_BY_WINDOWS_PARENTAL_CONTROLS = + 0x82e101c2; // 2195784130 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_451_UNAVAILABLE_FOR_LEGAL_REASONS = + 0x82e101c3; // 2195784131 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_499_CLIENT_CLOSED_REQUEST = + 0x82e101f3; // 2195784179 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_500_INTERNAL_SERVER_ERROR = + 0x82e101f4; // 2195784180 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_501_NOT_IMPLEMENTED = + 0x82e101f5; // 2195784181 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_502_BAD_GATEWAY = + 0x82e101f6; // 2195784182 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_503_SERVICE_UNAVAILABLE = + 0x82e101f7; // 2195784183 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_504_GATEWAY_TIMEOUT = + 0x82e101f8; // 2195784184 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_505_HTTP_VERSION_NOT_SUPPORTED = + 0x82e101f9; // 2195784185 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_506_VARIANT_ALSO_NEGOTIATES = + 0x82e101fa; // 2195784186 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_507_INSUFFICIENT_STORAGE = + 0x82e101fb; // 2195784187 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_508_LOOP_DETECTED = + 0x82e101fc; // 2195784188 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_509_BANDWIDTH_LIMIT_EXCEEDED = + 0x82e101fd; // 2195784189 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_510_NOT_EXTENDED = + 0x82e101fe; // 2195784190 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_511_NETWORK_AUTHENTICATION_REQUIRED = + 0x82e101ff; // 2195784191 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_522_CONNECTION_TIMED_OUT = + 0x82e1020a; // 2195784202 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_598_NETWORK_READ_TIMEOUT_ERROR = + 0x82e10256; // 2195784278 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_OAUTH_HTTP_STATUS_CODE_599_NETWORK_CONNECT_TIMEOUT_ERROR = + 0x82e10257; // 2195784279 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_ACCESS_DENIED_BY_PRIVACY_LEVEL = + 0x8220120c; // 2183139852 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_ACCESS_DENIED_BY_RESOURCE_OWNERSHIP = + 0x8220100e; // 2183139342 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_ACCESS_DENIED_DUE_TO_TITILE_MISMATCH = + 0x8220120a; // 2183139850 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_ACCESS_TOKEN_REQUIRED = + 0x82201200; // 2183139840 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_ALREADY_BOUND_THE_USER = + 0x82201401; // 2183140353 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_AUTHORIZATION_SERVER_ERROR = + 0x82201304; // 2183140100 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_BAD_REQUEST = 0x82201001; // 2183139329 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_BANNED_APPLICATION = + 0x82201207; // 2183139847 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_BANNED_DEVICE = + 0x82201209; // 2183139849 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_BANNED_USER = 0x82201208; // 2183139848 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_BLOCKED_USER_EXISTS = + 0x82201185; // 2183139717 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_EXCEED_THE_MAX_COUNT_OF_BIND_USER = + 0x82201402; // 2183140354 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_EXPIRED_ACCESS_TOKEN = + 0x82201202; // 2183139842 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_EXPIRED_NP_TITLE_TOKEN = + 0x82201205; // 2183139845 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_FAILED_TO_DELIVER_NO_PERMISSION = + 0x82201505; // 2183140613 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_FAILED_TO_DELIVER_NO_SUCH_DEVICE = + 0x82201504; // 2183140612 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_FAILED_TO_DELIVER_NO_SUCH_USER = + 0x82201501; // 2183140609 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_FAILED_TO_DELIVER_THE_USER_IS_NOT_BIND_USER = + 0x82201502; // 2183140610 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_FAILED_TO_DELIVER_USER_STATUS_IS_NOT_ACTIVE = + 0x82201503; // 2183140611 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_HEADER_REQUIRED = + 0x82201141; // 2183139649 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INTERNAL_SERVER_ERROR = + 0x82201301; // 2183140097 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_ACCESS_TOKEN = + 0x82201201; // 2183139841 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_BODY = + 0x82201180; // 2183139712 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_BODY_PARAMETER = + 0x82201182; // 2183139714 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_BODY_PARAMETER_COMBINATION = + 0x82201184; // 2183139716 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_BODY_PARAMETER_LIST_LENGTH = + 0x82201183; // 2183139715 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_HEADER = + 0x82201140; // 2183139648 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_MULTIPART_HEADER = + 0x82201187; // 2183139719 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_NP_COMMUNICATION_ID = + 0x82201007; // 2183139335 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_NP_ENVIRONMENT = + 0x82201004; // 2183139332 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_NP_SERVICE_LABEL = + 0x82201006; // 2183139334 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_NP_SERVICE_NAME = + 0x82201009; // 2183139337 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_NP_TITLE_ID = + 0x82201005; // 2183139333 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_NP_TITLE_TOKEN = + 0x82201204; // 2183139844 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_OAUTH_CLIENT_ID = + 0x8220100a; // 2183139338 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_PARAMETER_IN_URL = + 0x82201104; // 2183139588 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_QUERY_PARAMETER = + 0x82201101; // 2183139585 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_QUERY_PARAMETER_COMBINATION = + 0x82201102; // 2183139586 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_QUERY_STRING = + 0x82201100; // 2183139584 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_INVALID_SERVICE_ID = + 0x82201008; // 2183139336 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_MANDATORY_BODY_PARAMETER_MISSING = + 0x82201186; // 2183139718 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_MANDATORY_MULTIPART_HEADER_MISSING = + 0x82201188; // 2183139720 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_MANDATORY_QUERY_PARAMETER_MISSING = + 0x82201105; // 2183139589 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_NEED_TO_UPGRADE = + 0x8220120e; // 2183139854 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_NO_PERMISSION_TO_BECOME_ACTIVE_STATUS = + 0x82201506; // 2183140614 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_NOT_ALLOWED_TO_CHANGE_STATUS = + 0x82201507; // 2183140615 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_NOT_AUTHORIZED = + 0x82201206; // 2183139846 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_NOT_AUTHORIZED_ACCESS_TOKEN = + 0x8220120d; // 2183139853 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_NOT_AUTHORIZED_APPLICATION = + 0x82201283; // 2183139971 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_NOT_AUTHORIZED_ON_PLATFORM = + 0x8220120f; // 2183139855 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_NP_COMMUNICATION_ID_NOT_FOUND = + 0x82201284; // 2183139972 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_NP_SERVICE_LABEL_NOT_FOUND = + 0x82201282; // 2183139970 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_NP_TITLE_ID_NOT_FOUND = + 0x82201281; // 2183139969 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_NP_TITLE_ID_NOT_MATCHING_TOKENS = + 0x8220100b; // 2183139339 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_NP_TITLE_TOKEN_REQUIRED = + 0x82201203; // 2183139843 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_NULL_VALUE_NOT_ALLOWED = + 0x82201181; // 2183139713 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_RATE_LIMIT_EXCEEDED = + 0x8220120b; // 2183139851 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_RESOURCE_NOT_FOUND = + 0x8220100d; // 2183139341 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_SERVER_BUSY = 0x82201303; // 2183140099 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_SERVICE_CLOSED = + 0x82201341; // 2183140161 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_SERVICE_ID_NOT_FOUND = + 0x82201285; // 2183139973 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_SERVICE_TEMPORARILY_UNAVAILABLE = + 0x82201302; // 2183140098 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_THE_USER_IS_NOT_BIND_USER = + 0x82201403; // 2183140355 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_TOO_LARGE_BODY = + 0x82201003; // 2183139331 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_UNAVAILABLE_QUERY_PARAMETER_FOR_RESOURCE = + 0x82201103; // 2183139587 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_UNDER_MAINTENANCE = + 0x82201340; // 2183140160 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_UNEXPECTED_ERROR = + 0x82201300; // 2183140096 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_UNKNOWN_CLIENT = + 0x82201280; // 2183139968 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_UNKNOWN_ERROR = + 0x82201380; // 2183140224 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_UNSUPPORTED_API_VERSION = + 0x82201002; // 2183139330 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_USER_NOT_FOUND = + 0x8220100c; // 2183139340 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_PUSH_NOTIFICATION_USERS_ACCESS_TOKEN_REQUIRED = + 0x82201210; // 2183139856 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_ACCESS_DENIED_BY_PRIVACY_LEVEL = + 0x8220420c; // 2183152140 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_ACCESS_DENIED_BY_RESOURCE_OWNERSHIP = + 0x8220400e; // 2183151630 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_ACCESS_DENIED_DUE_TO_TITILE_MISMATCH = + 0x8220420a; // 2183152138 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_ACCESS_TOKEN_REQUIRED = + 0x82204200; // 2183152128 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_AUTHORIZATION_SERVER_ERROR = + 0x82204304; // 2183152388 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_BAD_REQUEST = + 0x82204001; // 2183151617 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_BANNED_APPLICATION = + 0x82204207; // 2183152135 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_BANNED_DEVICE = + 0x82204209; // 2183152137 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_BANNED_USER = + 0x82204208; // 2183152136 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_BLOCKED_USER_EXISTS = + 0x82204185; // 2183152005 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_EXPIRED_ACCESS_TOKEN = + 0x82204202; // 2183152130 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_EXPIRED_INVITATION = + 0x82204800; // 2183153664 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_EXPIRED_NP_TITLE_TOKEN = + 0x82204205; // 2183152133 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_HEADER_REQUIRED = + 0x82204141; // 2183151937 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INTERNAL_SERVER_ERROR = + 0x82204301; // 2183152385 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_ACCESS_TOKEN = + 0x82204201; // 2183152129 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_BODY = + 0x82204180; // 2183152000 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_BODY_PARAMETER = + 0x82204182; // 2183152002 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_BODY_PARAMETER_COMBINATION = + 0x82204184; // 2183152004 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_BODY_PARAMETER_LIST_LENGTH = + 0x82204183; // 2183152003 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_HEADER = + 0x82204140; // 2183151936 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_MULTIPART_HEADER = + 0x82204187; // 2183152007 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_NP_COMMUNICATION_ID = + 0x82204007; // 2183151623 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_NP_ENVIRONMENT = + 0x82204004; // 2183151620 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_NP_SERVICE_LABEL = + 0x82204006; // 2183151622 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_NP_SERVICE_NAME = + 0x82204009; // 2183151625 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_NP_TITLE_ID = + 0x82204005; // 2183151621 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_NP_TITLE_TOKEN = + 0x82204204; // 2183152132 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_OAUTH_CLIENT_ID = + 0x8220400a; // 2183151626 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_PARAMETER_IN_URL = + 0x82204104; // 2183151876 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_QUERY_PARAMETER = + 0x82204101; // 2183151873 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_QUERY_PARAMETER_COMBINATION = + 0x82204102; // 2183151874 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_QUERY_STRING = + 0x82204100; // 2183151872 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_INVALID_SERVICE_ID = + 0x82204008; // 2183151624 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_MANDATORY_BODY_PARAMETER_MISSING = + 0x82204186; // 2183152006 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_MANDATORY_MULTIPART_HEADER_MISSING = + 0x82204188; // 2183152008 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_MANDATORY_QUERY_PARAMETER_MISSING = + 0x82204105; // 2183151877 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_NEED_TO_UPGRADE = + 0x8220420e; // 2183152142 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_NOT_AUTHORIZED = + 0x82204206; // 2183152134 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_NOT_AUTHORIZED_ACCESS_TOKEN = + 0x8220420d; // 2183152141 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_NOT_AUTHORIZED_APPLICATION = + 0x82204283; // 2183152259 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_NOT_AUTHORIZED_ON_PLATFORM = + 0x8220420f; // 2183152143 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_NOT_PERMIT_TO_ACCESS_THE_SESSION = + 0x82204400; // 2183152640 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_NP_COMMUNICATION_ID_NOT_FOUND = + 0x82204284; // 2183152260 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_NP_SERVICE_LABEL_NOT_FOUND = + 0x82204282; // 2183152258 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_NP_TITLE_ID_NOT_FOUND = + 0x82204281; // 2183152257 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_NP_TITLE_ID_NOT_MATCHING_TOKENS = + 0x8220400b; // 2183151627 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_NP_TITLE_TOKEN_REQUIRED = + 0x82204203; // 2183152131 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_NULL_VALUE_NOT_ALLOWED = + 0x82204181; // 2183152001 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_ONLY_SESSION_CREATOR_PERMITTED = + 0x82204402; // 2183152642 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_ONLY_SESSION_MEMBER_PERMITTED = + 0x82204403; // 2183152643 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_RATE_LIMIT_EXCEEDED = + 0x8220420b; // 2183152139 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_RESOURCE_NOT_FOUND = + 0x8220400d; // 2183151629 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_SERVER_BUSY = + 0x82204303; // 2183152387 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_SERVICE_CLOSED = + 0x82204341; // 2183152449 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_SERVICE_ID_NOT_FOUND = + 0x82204285; // 2183152261 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_SERVICE_TEMPORARILY_UNAVAILABLE = + 0x82204302; // 2183152386 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_THE_SESSION_IS_FULL = + 0x82204401; // 2183152641 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_TOO_LARGE_BODY = + 0x82204003; // 2183151619 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_UNAVAILABLE_QUERY_PARAMETER_FOR_RESOURCE = + 0x82204103; // 2183151875 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_UNDER_MAINTENANCE = + 0x82204340; // 2183152448 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_UNEXPECTED_ERROR = + 0x82204300; // 2183152384 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_UNKNOWN_CLIENT = + 0x82204280; // 2183152256 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_UNKNOWN_ERROR = + 0x82204380; // 2183152512 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_UNSUPPORTED_API_VERSION = + 0x82204002; // 2183151618 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_USER_NOT_FOUND = + 0x8220400c; // 2183151628 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SESSION_INVITATION_USERS_ACCESS_TOKEN_REQUIRED = + 0x82204210; // 2183152144 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_3RD_PARTY_RATE_LIMIT_EXCEEDED = + 0x82305f0c; // 2184208140 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_CLIENT_ERROR = 0x82305f09; // 2184208137 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_CONTENT_NOT_FOUND = + 0x82305f63; // 2184208227 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_DATA_ACCESS_ERROR = + 0x82305f06; // 2184208134 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_FORBIDDEN = 0x82305f66; // 2184208230 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_HTTP_NOT_IMPLEMENTED = + 0x82305f69; // 2184208233 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_INTERNAL_ERROR = 0x82305f02; // 2184208130 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_INVALID_3RD_PARTY_TOKEN = + 0x82305f13; // 2184208147 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_INVALID_APP_ID = 0x82305f44; // 2184208196 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_INVALID_JSON = 0x82305f38; // 2184208184 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_INVALID_MASTER_TOKEN = + 0x82305f42; // 2184208194 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_INVALID_PARAMETER = + 0x82305f05; // 2184208133 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_INVALID_PSN_ACCESS_TOKEN = + 0x82305f12; // 2184208146 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_INVALID_REQUEST = + 0x82305f01; // 2184208129 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_NON_REGISTERED_TITLE_ID = + 0x82305f45; // 2184208197 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_NOT_ALLOWED = 0x82305f65; // 2184208229 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_NOT_AUTHORIZED = 0x82305f64; // 2184208228 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_NOT_IMPLEMENTED = + 0x82305f07; // 2184208135 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_NOT_SUPPORTED = 0x82305f47; // 2184208199 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_OG_TEMPLATE_ERROR = + 0x82305f41; // 2184208193 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_POST_RATE_LIMIT_EXCEEDED = + 0x82305f31; // 2184208177 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_PRIVACY_VIOLATION = + 0x82305f14; // 2184208148 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_PROXY_AUTH_FAILURE = + 0x82305f43; // 2184208195 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_REQUEST_TOO_LONG = + 0x82305f67; // 2184208231 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_REQUEST_URI_TOO_LONG = + 0x82305f68; // 2184208232 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_REQUIRE_AUTHORIZATION = + 0x82305f22; // 2184208162 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_REQUIRE_PROFILE_UPDATE = + 0x82305f21; // 2184208161 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_RESOURCE_NOT_FOUND = + 0x82305f04; // 2184208132 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_SERVER_ERROR = 0x82305f08; // 2184208136 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_SERVICE_UNAVAILABLE = + 0x82305f03; // 2184208131 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_SOCIAL_NETWORK_UNSUPPORTED_MEDIA_TYPE = + 0x82305f0a; // 2184208138 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_ACCESS_DENIED_BY_PRIVACY_LEVEL = + 0x8220a20c; // 2183176716 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_ACCESS_DENIED_BY_RESOURCE_OWNERSHIP = + 0x8220a00e; // 2183176206 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_ACCESS_DENIED_DUE_TO_TITILE_MISMATCH = + 0x8220a20a; // 2183176714 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_ACCESS_TOKEN_REQUIRED = 0x8220a200; // 2183176704 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_AUTHORIZATION_SERVER_ERROR = + 0x8220a304; // 2183176964 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_BAD_REQUEST = 0x8220a001; // 2183176193 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_BANNED_APPLICATION = 0x8220a207; // 2183176711 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_BANNED_DEVICE = 0x8220a209; // 2183176713 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_BANNED_USER = 0x8220a208; // 2183176712 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_BLOCKED_USER_EXISTS = 0x8220a185; // 2183176581 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_EXPIRED_ACCESS_TOKEN = 0x8220a202; // 2183176706 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_EXPIRED_NP_TITLE_TOKEN = 0x8220a205; // 2183176709 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_HEADER_REQUIRED = 0x8220a141; // 2183176513 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INTERNAL_SERVER_ERROR = 0x8220a301; // 2183176961 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_ACCESS_TOKEN = 0x8220a201; // 2183176705 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_BODY = 0x8220a180; // 2183176576 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_BODY_PARAMETER = 0x8220a182; // 2183176578 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_BODY_PARAMETER_COMBINATION = + 0x8220a184; // 2183176580 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_BODY_PARAMETER_LIST_LENGTH = + 0x8220a183; // 2183176579 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_HEADER = 0x8220a140; // 2183176512 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_MULTIPART_HEADER = + 0x8220a187; // 2183176583 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_NP_COMMUNICATION_ID = + 0x8220a007; // 2183176199 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_NP_ENVIRONMENT = 0x8220a004; // 2183176196 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_NP_SERVICE_LABEL = + 0x8220a006; // 2183176198 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_NP_SERVICE_NAME = + 0x8220a009; // 2183176201 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_NP_TITLE_ID = 0x8220a005; // 2183176197 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_NP_TITLE_TOKEN = 0x8220a204; // 2183176708 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_OAUTH_CLIENT_ID = + 0x8220a00a; // 2183176202 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_PARAMETER_IN_URL = + 0x8220a104; // 2183176452 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_QUERY_PARAMETER = + 0x8220a101; // 2183176449 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_QUERY_PARAMETER_COMBINATION = + 0x8220a102; // 2183176450 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_QUERY_STRING = 0x8220a100; // 2183176448 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_INVALID_SERVICE_ID = 0x8220a008; // 2183176200 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_MANDATORY_BODY_PARAMETER_MISSING = + 0x8220a186; // 2183176582 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_MANDATORY_MULTIPART_HEADER_MISSING = + 0x8220a188; // 2183176584 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_MANDATORY_QUERY_PARAMETER_MISSING = + 0x8220a105; // 2183176453 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_NEED_TO_UPGRADE = 0x8220a20e; // 2183176718 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_NOT_AUTHORIZED = 0x8220a206; // 2183176710 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_NOT_AUTHORIZED_ACCESS_TOKEN = + 0x8220a20d; // 2183176717 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_NOT_AUTHORIZED_APPLICATION = + 0x8220a283; // 2183176835 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_NOT_AUTHORIZED_ON_PLATFORM = + 0x8220a20f; // 2183176719 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_NP_COMMUNICATION_ID_NOT_FOUND = + 0x8220a284; // 2183176836 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_NP_SERVICE_LABEL_NOT_FOUND = + 0x8220a282; // 2183176834 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_NP_TITLE_ID_NOT_FOUND = 0x8220a281; // 2183176833 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_NP_TITLE_ID_NOT_MATCHING_TOKENS = + 0x8220a00b; // 2183176203 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_NP_TITLE_TOKEN_REQUIRED = + 0x8220a203; // 2183176707 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_NULL_VALUE_NOT_ALLOWED = 0x8220a181; // 2183176577 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_RATE_LIMIT_EXCEEDED = 0x8220a20b; // 2183176715 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_RESOURCE_NOT_FOUND = 0x8220a00d; // 2183176205 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_SERVER_BUSY = 0x8220a303; // 2183176963 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_SERVICE_CLOSED = 0x8220a341; // 2183177025 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_SERVICE_ID_NOT_FOUND = 0x8220a285; // 2183176837 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_SERVICE_TEMPORARILY_UNAVAILABLE = + 0x8220a302; // 2183176962 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_TOO_LARGE_BODY = 0x8220a003; // 2183176195 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_UNAVAILABLE_QUERY_PARAMETER_FOR_RESOURCE = + 0x8220a103; // 2183176451 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_UNDER_MAINTENANCE = 0x8220a340; // 2183177024 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_UNEXPECTED_ERROR = 0x8220a300; // 2183176960 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_UNKNOWN_CLIENT = 0x8220a280; // 2183176832 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_UNKNOWN_ERROR = 0x8220a380; // 2183177088 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_UNSUPPORTED_API_VERSION = + 0x8220a002; // 2183176194 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_USER_NOT_FOUND = 0x8220a00c; // 2183176204 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TROPHY_USERS_ACCESS_TOKEN_REQUIRED = + 0x8220a210; // 2183176720 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_ACCESS_DENIED_BY_PRIVACY_LEVEL = + 0x8220c20c; // 2183184908 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_ACCESS_DENIED_BY_RESOURCE_OWNERSHIP = + 0x8220c00e; // 2183184398 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_ACCESS_DENIED_DUE_TO_TITILE_MISMATCH = + 0x8220c20a; // 2183184906 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_ACCESS_TOKEN_REQUIRED = 0x8220c200; // 2183184896 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_AUTHORIZATION_SERVER_ERROR = + 0x8220c304; // 2183185156 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_BAD_REQUEST = 0x8220c001; // 2183184385 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_BANNED_APPLICATION = 0x8220c207; // 2183184903 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_BANNED_DEVICE = 0x8220c209; // 2183184905 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_BANNED_USER = 0x8220c208; // 2183184904 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_BLOCKED_USER_EXISTS = 0x8220c185; // 2183184773 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_EXPIRED_ACCESS_TOKEN = 0x8220c202; // 2183184898 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_EXPIRED_NP_TITLE_TOKEN = 0x8220c205; // 2183184901 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_HEADER_REQUIRED = 0x8220c141; // 2183184705 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INTERNAL_SERVER_ERROR = 0x8220c301; // 2183185153 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_ACCESS_TOKEN = 0x8220c201; // 2183184897 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_BODY = 0x8220c180; // 2183184768 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_BODY_PARAMETER = 0x8220c182; // 2183184770 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_BODY_PARAMETER_COMBINATION = + 0x8220c184; // 2183184772 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_BODY_PARAMETER_LIST_LENGTH = + 0x8220c183; // 2183184771 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_HEADER = 0x8220c140; // 2183184704 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_MULTIPART_HEADER = 0x8220c187; // 2183184775 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_NP_COMMUNICATION_ID = + 0x8220c007; // 2183184391 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_NP_ENVIRONMENT = 0x8220c004; // 2183184388 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_NP_SERVICE_LABEL = 0x8220c006; // 2183184390 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_NP_SERVICE_NAME = 0x8220c009; // 2183184393 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_NP_TITLE_ID = 0x8220c005; // 2183184389 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_NP_TITLE_TOKEN = 0x8220c204; // 2183184900 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_OAUTH_CLIENT_ID = 0x8220c00a; // 2183184394 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_PARAMETER_IN_URL = 0x8220c104; // 2183184644 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_QUERY_PARAMETER = 0x8220c101; // 2183184641 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_QUERY_PARAMETER_COMBINATION = + 0x8220c102; // 2183184642 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_QUERY_STRING = 0x8220c100; // 2183184640 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_INVALID_SERVICE_ID = 0x8220c008; // 2183184392 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_MANDATORY_BODY_PARAMETER_MISSING = + 0x8220c186; // 2183184774 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_MANDATORY_MULTIPART_HEADER_MISSING = + 0x8220c188; // 2183184776 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_MANDATORY_QUERY_PARAMETER_MISSING = + 0x8220c105; // 2183184645 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_NEED_TO_UPGRADE = 0x8220c20e; // 2183184910 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_NOT_AUTHORIZED = 0x8220c206; // 2183184902 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_NOT_AUTHORIZED_ACCESS_TOKEN = + 0x8220c20d; // 2183184909 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_NOT_AUTHORIZED_APPLICATION = + 0x8220c283; // 2183185027 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_NOT_AUTHORIZED_ON_PLATFORM = + 0x8220c20f; // 2183184911 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_NP_COMMUNICATION_ID_NOT_FOUND = + 0x8220c284; // 2183185028 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_NP_SERVICE_LABEL_NOT_FOUND = + 0x8220c282; // 2183185026 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_NP_TITLE_ID_NOT_FOUND = 0x8220c281; // 2183185025 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_NP_TITLE_ID_NOT_MATCHING_TOKENS = + 0x8220c00b; // 2183184395 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_NP_TITLE_TOKEN_REQUIRED = 0x8220c203; // 2183184899 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_NULL_VALUE_NOT_ALLOWED = 0x8220c181; // 2183184769 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_RATE_LIMIT_EXCEEDED = 0x8220c20b; // 2183184907 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_RESOURCE_NOT_FOUND = 0x8220c00d; // 2183184397 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_SERVER_BUSY = 0x8220c303; // 2183185155 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_SERVICE_CLOSED = 0x8220c341; // 2183185217 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_SERVICE_ID_NOT_FOUND = 0x8220c285; // 2183185029 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_SERVICE_TEMPORARILY_UNAVAILABLE = + 0x8220c302; // 2183185154 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_TOO_LARGE_BODY = 0x8220c003; // 2183184387 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_UNAVAILABLE_QUERY_PARAMETER_FOR_RESOURCE = + 0x8220c103; // 2183184643 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_UNDER_MAINTENANCE = 0x8220c340; // 2183185216 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_UNEXPECTED_ERROR = 0x8220c300; // 2183185152 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_UNKNOWN_CLIENT = 0x8220c280; // 2183185024 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_UNKNOWN_ERROR = 0x8220c380; // 2183185280 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_UNSUPPORTED_API_VERSION = 0x8220c002; // 2183184386 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_USER_NOT_FOUND = 0x8220c00c; // 2183184396 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_TSS_USERS_ACCESS_TOKEN_REQUIRED = + 0x8220c210; // 2183184912 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_UNEXPECTED_ERROR = 0x82ffffff; // 2197815295 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_ACCESS_DENIED_BY_PRIVACY_LEVEL = + 0x8220220c; // 2183143948 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_ACCESS_DENIED_BY_RESOURCE_OWNERSHIP = + 0x8220200e; // 2183143438 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_ACCESS_DENIED_DUE_TO_TITILE_MISMATCH = + 0x8220220a; // 2183143946 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_ACCESS_TOKEN_REQUIRED = + 0x82202200; // 2183143936 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_ALREADY_FRIEND = 0x82202902; // 2183145730 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_ALREADY_FRIEND_REQUESTED = + 0x82202903; // 2183145731 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_ALREADY_NAME_SHARING_REQUESTED = + 0x82202909; // 2183145737 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_AUTHORIZATION_SERVER_ERROR = + 0x82202304; // 2183144196 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_BAD_REQUEST = 0x82202001; // 2183143425 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_BANNED_APPLICATION = + 0x82202207; // 2183143943 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_BANNED_DEVICE = 0x82202209; // 2183143945 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_BANNED_USER = 0x82202208; // 2183143944 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_BLOCK_LIST_FULL = 0x82202b00; // 2183146240 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_BLOCKED_USER = 0x82202907; // 2183145735 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_BLOCKED_USER_EXISTS = + 0x82202185; // 2183143813 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_CANNOT_ADD_YOUR_OWN_SELF = + 0x82202401; // 2183144449 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_CANNOT_SPECIFY_YOUR_OWN_SELF = + 0x8220290c; // 2183145740 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_CONSOLE_NOT_REGISTERED = + 0x82202c00; // 2183146496 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_DEVICE_ID_NOT_MATCHED = + 0x82202a01; // 2183145985 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_EXPIRED_ACCESS_TOKEN = + 0x82202202; // 2183143938 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_EXPIRED_NP_TITLE_TOKEN = + 0x82202205; // 2183143941 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_FAILED_TO_SEND_WAKE_UP_PACKET_DEVICE_NOT_BOUND = + 0x82202c03; // 2183146499 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_FAILED_TO_SEND_WAKE_UP_PACKET_SERVER_ERROR = + 0x82202c04; // 2183146500 +constexpr int + ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_FAILED_TO_SEND_WAKE_UP_PACKET_USER_NOT_BOUND = + 0x82202c02; // 2183146498 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_FRIEND_REQUEST_NOT_FOUND = + 0x82202900; // 2183145728 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_HEADER_REQUIRED = 0x82202141; // 2183143745 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INTERNAL_SERVER_ERROR = + 0x82202301; // 2183144193 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_ACCESS_TOKEN = + 0x82202201; // 2183143937 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_BODY = 0x82202180; // 2183143808 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_BODY_PARAMETER = + 0x82202182; // 2183143810 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_BODY_PARAMETER_COMBINATION = + 0x82202184; // 2183143812 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_BODY_PARAMETER_LIST_LENGTH = + 0x82202183; // 2183143811 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_HEADER = 0x82202140; // 2183143744 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_MULTIPART_HEADER = + 0x82202187; // 2183143815 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_NP_COMMUNICATION_ID = + 0x82202007; // 2183143431 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_NP_ENVIRONMENT = + 0x82202004; // 2183143428 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_NP_SERVICE_LABEL = + 0x82202006; // 2183143430 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_NP_SERVICE_NAME = + 0x82202009; // 2183143433 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_NP_TITLE_ID = + 0x82202005; // 2183143429 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_NP_TITLE_TOKEN = + 0x82202204; // 2183143940 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_OAUTH_CLIENT_ID = + 0x8220200a; // 2183143434 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_PARAMETER_IN_URL = + 0x82202104; // 2183143684 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_QUERY_PARAMETER = + 0x82202101; // 2183143681 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_QUERY_PARAMETER_COMBINATION = + 0x82202102; // 2183143682 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_QUERY_STRING = + 0x82202100; // 2183143680 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_INVALID_SERVICE_ID = + 0x82202008; // 2183143432 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_MANDATORY_BODY_PARAMETER_MISSING = + 0x82202186; // 2183143814 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_MANDATORY_MULTIPART_HEADER_MISSING = + 0x82202188; // 2183143816 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_MANDATORY_QUERY_PARAMETER_MISSING = + 0x82202105; // 2183143685 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_NAME_ALREADY_SHARED = + 0x82202906; // 2183145734 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_NAME_REGISTRATION_REQUIRED = + 0x8220290a; // 2183145738 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_NAME_SHARING_REQUEST_NOT_FOUND = + 0x82202908; // 2183145736 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_NEED_TO_UPGRADE = 0x8220220e; // 2183143950 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_NON_FRIEND_NOT_ALLOWED = + 0x82202a00; // 2183145984 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_NOT_AUTHORIZED = 0x82202206; // 2183143942 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_NOT_AUTHORIZED_ACCESS_TOKEN = + 0x8220220d; // 2183143949 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_NOT_AUTHORIZED_APPLICATION = + 0x82202283; // 2183144067 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_NOT_AUTHORIZED_ON_PLATFORM = + 0x8220220f; // 2183143951 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_NOT_IN_FRIEND_LIST = + 0x82202901; // 2183145729 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_NP_COMMUNICATION_ID_NOT_FOUND = + 0x82202284; // 2183144068 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_NP_SERVICE_LABEL_NOT_FOUND = + 0x82202282; // 2183144066 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_NP_TITLE_ID_NOT_FOUND = + 0x82202281; // 2183144065 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_NP_TITLE_ID_NOT_MATCHED = + 0x82202a02; // 2183145986 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_NP_TITLE_ID_NOT_MATCHING_TOKENS = + 0x8220200b; // 2183143435 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_NP_TITLE_TOKEN_REQUIRED = + 0x82202203; // 2183143939 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_NULL_VALUE_NOT_ALLOWED = + 0x82202181; // 2183143809 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_OTHER_CONSOLE_ALREADY_REGISTERED = + 0x82202c01; // 2183146497 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_RATE_LIMIT_EXCEEDED = + 0x8220220b; // 2183143947 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_REQUEST_NOT_ALLOWED_DUE_TO_ONLINE_STATUS = + 0x82202400; // 2183144448 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_REQUESTED_USERS_FRIEND_LIST_FULL = + 0x82202905; // 2183145733 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_REQUESTERS_FRIEND_LIST_FULL = + 0x82202904; // 2183145732 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_RESOURCE_NOT_FOUND = + 0x8220200d; // 2183143437 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_SERVER_BUSY = 0x82202303; // 2183144195 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_SERVICE_CLOSED = 0x82202341; // 2183144257 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_SERVICE_ID_NOT_FOUND = + 0x82202285; // 2183144069 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_SERVICE_TEMPORARILY_UNAVAILABLE = + 0x82202302; // 2183144194 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_START_LOG_NOT_FOUND = + 0x82202d00; // 2183146752 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_TARGET_USER_NOT_REGISTERED_NAME = + 0x8220290b; // 2183145739 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_TOO_LARGE_BODY = 0x82202003; // 2183143427 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_UNAVAILABLE_QUERY_PARAMETER_FOR_RESOURCE = + 0x82202103; // 2183143683 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_UNDER_MAINTENANCE = + 0x82202340; // 2183144256 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_UNEXPECTED_ERROR = 0x82202300; // 2183144192 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_UNKNOWN_CLIENT = 0x82202280; // 2183144064 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_UNKNOWN_ERROR = 0x82202380; // 2183144320 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_UNSUPPORTED_API_VERSION = + 0x82202002; // 2183143426 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_USER_NOT_FOUND = 0x8220200c; // 2183143436 +constexpr int ORBIS_NP_WEBAPI_SERVER_ERROR_USER_PROFILE_USERS_ACCESS_TOKEN_REQUIRED = + 0x82202210; // 2183143952 + +// ORBIS_SWU +constexpr int SCE_ORBIS_SWU_ERROR_CLOSE_POWER_BUTTON = 0x80182991; // 2149067153 +constexpr int SCE_ORBIS_SWU_ERROR_CONNECT = 0x80182903; // 2149067011 +constexpr int SCE_ORBIS_SWU_ERROR_KILL = 0x80182901; // 2149067009 +constexpr int SCE_ORBIS_SWU_ERROR_NOT_FOUND = 0x80182980; // 2149067136 +constexpr int SCE_ORBIS_SWU_ERROR_OPEN_POWER_BUTTON = 0x80182990; // 2149067152 +constexpr int SCE_ORBIS_SWU_ERROR_READ_POWER_BUTTON = 0x80182992; // 2149067154 +constexpr int SCE_ORBIS_SWU_ERROR_SEND = 0x80182905; // 2149067013 +constexpr int SCE_ORBIS_SWU_ERROR_SOCKET = 0x80182902; // 2149067010 +constexpr int SCE_ORBIS_SWU_ERROR_SOCKET_CLOSE = 0x80182904; // 2149067012 +constexpr int SCE_ORBIS_SWU_ERROR_STAT = 0x80182961; // 2149067105 +constexpr int SCE_ORBIS_SWU_ERROR_UNLINK = 0x80182960; // 2149067104 +constexpr int SCE_ORBIS_SWU_ERROR_WRONG_PUP = 0x80182981; // 2149067137 + +// PAF +constexpr int ORBIS_PAF_ERROR_ALARM = 0x80af0044; // 2158952516 +constexpr int ORBIS_PAF_ERROR_ALREADY = 0x80af0020; // 2158952480 +constexpr int ORBIS_PAF_ERROR_BUSY = 0x80af0021; // 2158952481 +constexpr int ORBIS_PAF_ERROR_CPUDI = 0x80af0031; // 2158952497 +constexpr int ORBIS_PAF_ERROR_DIR_ERROR = 0x80af5901; // 2158975233 +constexpr int ORBIS_PAF_ERROR_DIR_NOENT = 0x80af5902; // 2158975234 +constexpr int ORBIS_PAF_ERROR_EVENTFLAG = 0x80af0042; // 2158952514 +constexpr int ORBIS_PAF_ERROR_FILE_ASYNC_BUSY = 0x80af5041; // 2158972993 +constexpr int ORBIS_PAF_ERROR_FILE_BAD_FD = 0x80af5021; // 2158972961 +constexpr int ORBIS_PAF_ERROR_FILE_EACCESS = 0x80af5025; // 2158972965 +constexpr int ORBIS_PAF_ERROR_FILE_ERROR = 0x80af5001; // 2158972929 +constexpr int ORBIS_PAF_ERROR_FILE_EXIST = 0x80af5026; // 2158972966 +constexpr int ORBIS_PAF_ERROR_FILE_INVALID_ARG = 0x80af5002; // 2158972930 +constexpr int ORBIS_PAF_ERROR_FILE_INVALID_CALL = 0x80af5006; // 2158972934 +constexpr int ORBIS_PAF_ERROR_FILE_MFILE = 0x80af5023; // 2158972963 +constexpr int ORBIS_PAF_ERROR_FILE_NO_ASYNC = 0x80af5042; // 2158972994 +constexpr int ORBIS_PAF_ERROR_FILE_NO_IMPL = 0x80af5004; // 2158972932 +constexpr int ORBIS_PAF_ERROR_FILE_NO_MEMORY = 0x80af5003; // 2158972931 +constexpr int ORBIS_PAF_ERROR_FILE_NODEV = 0x80af5024; // 2158972964 +constexpr int ORBIS_PAF_ERROR_FILE_NOSPACE = 0x80af5027; // 2158972967 +constexpr int ORBIS_PAF_ERROR_FILE_NOT_FOUND = 0x80af5022; // 2158972962 +constexpr int ORBIS_PAF_ERROR_FILE_NOT_OPENED = 0x80af5029; // 2158972969 +constexpr int ORBIS_PAF_ERROR_FILE_NOT_SUPPORTED = 0x80af5005; // 2158972933 +constexpr int ORBIS_PAF_ERROR_FILE_OPENED = 0x80af5028; // 2158972968 +constexpr int ORBIS_PAF_ERROR_ILLEGAL_CONTEXT = 0x80af0030; // 2158952496 +constexpr int ORBIS_PAF_ERROR_INVALID_ARG = 0x80af008f; // 2158952591 +constexpr int ORBIS_PAF_ERROR_INVALID_COMMAND = 0x80af0086; // 2158952582 +constexpr int ORBIS_PAF_ERROR_INVALID_FLAG = 0x80af0085; // 2158952581 +constexpr int ORBIS_PAF_ERROR_INVALID_FORMAT = 0x80af0088; // 2158952584 +constexpr int ORBIS_PAF_ERROR_INVALID_ID = 0x80af0080; // 2158952576 +constexpr int ORBIS_PAF_ERROR_INVALID_INDEX = 0x80af0082; // 2158952578 +constexpr int ORBIS_PAF_ERROR_INVALID_MODE = 0x80af0087; // 2158952583 +constexpr int ORBIS_PAF_ERROR_INVALID_NAME = 0x80af0081; // 2158952577 +constexpr int ORBIS_PAF_ERROR_INVALID_POINTER = 0x80af0083; // 2158952579 +constexpr int ORBIS_PAF_ERROR_INVALID_SIZE = 0x80af0084; // 2158952580 +constexpr int ORBIS_PAF_ERROR_INVALID_VALUE = 0x80af008e; // 2158952590 +constexpr int ORBIS_PAF_ERROR_JOB_INVAID_STATUS = 0x80af0901; // 2158954753 +constexpr int ORBIS_PAF_ERROR_JOB_NO_THREAD = 0x80af0902; // 2158954754 +constexpr int ORBIS_PAF_ERROR_NOT_FOUND = 0x80af0025; // 2158952485 +constexpr int ORBIS_PAF_ERROR_NOT_IMPLEMENTED = 0x80af0003; // 2158952451 +constexpr int ORBIS_PAF_ERROR_NOT_INITIALIZED = 0x80af0001; // 2158952449 +constexpr int ORBIS_PAF_ERROR_NOT_SUPPORTED = 0x80af0004; // 2158952452 +constexpr int ORBIS_PAF_ERROR_OUT_OF_MEMORY = 0x80af0022; // 2158952482 +constexpr int ORBIS_PAF_ERROR_PRIV_REQUIRED = 0x80af0023; // 2158952483 +constexpr int ORBIS_PAF_ERROR_SEMAPHORE = 0x80af0041; // 2158952513 +constexpr int ORBIS_PAF_ERROR_THREAD = 0x80af0040; // 2158952512 +constexpr int ORBIS_PAF_ERROR_THREAD_ALREADY_STARTED = 0x80af0702; // 2158954242 +constexpr int ORBIS_PAF_ERROR_THREAD_START_FAILED = 0x80af0701; // 2158954241 +constexpr int ORBIS_PAF_ERROR_TIMEOUT = 0x80af0024; // 2158952484 +constexpr int ORBIS_PAF_ERROR_TIMER = 0x80af0043; // 2158952515 +constexpr int ORBIS_PAF_ERROR_UNMATCHED_VERSION = 0x80af0002; // 2158952450 + +// PARTITION_FORMATTER +constexpr int ORBIS_PARTITION_FORMATTER_ERROR_CANCELED = 0x80c20009; // 2160197641 +constexpr int ORBIS_PARTITION_FORMATTER_ERROR_GENERAL = 0x80c20000; // 2160197632 +constexpr int ORBIS_PARTITION_FORMATTER_ERROR_INVAL = 0x80c20001; // 2160197633 +constexpr int ORBIS_PARTITION_FORMATTER_ERROR_IO = 0x80c20003; // 2160197635 +constexpr int ORBIS_PARTITION_FORMATTER_ERROR_MKFS = 0x80c20004; // 2160197636 +constexpr int ORBIS_PARTITION_FORMATTER_ERROR_MKFS_INVAL = 0x80c20005; // 2160197637 +constexpr int ORBIS_PARTITION_FORMATTER_ERROR_MKFS_UFS = 0x80c20007; // 2160197639 +constexpr int ORBIS_PARTITION_FORMATTER_ERROR_NOMEM = 0x80c20002; // 2160197634 +constexpr int ORBIS_PARTITION_FORMATTER_ERROR_NOT_AVAILABLE = 0x80c20008; // 2160197640 +constexpr int ORBIS_PARTITION_FORMATTER_ERROR_NOT_FOUND = 0x80c20006; // 2160197638 + +// PF_AUTH_CLEINT +constexpr int ORBIS_PF_AUTH_CLEINT_SERVER_ERROR_INVALID_REQUEST_BODY_SIZE = + 0x80de0049; // 2162032713 +constexpr int ORBIS_PF_AUTH_CLIENT_ERROR_ABORTED = 0x80de0003; // 2162032643 +constexpr int ORBIS_PF_AUTH_CLIENT_ERROR_AUTH_FAILED = 0x80de0013; // 2162032659 +constexpr int ORBIS_PF_AUTH_CLIENT_ERROR_CONSOLE_BANNED = 0x80de0012; // 2162032658 +constexpr int ORBIS_PF_AUTH_CLIENT_ERROR_CONSOLE_TOKEN_BUFFER_SIZE_NOT_ENOUGH = + 0x80de0014; // 2162032660 +constexpr int ORBIS_PF_AUTH_CLIENT_ERROR_EMERGENT_SYSTEM_SOFTWARE_UPDATE_REQUIRED = + 0x80de0011; // 2162032657 +constexpr int ORBIS_PF_AUTH_CLIENT_ERROR_INVALID_ARGUMENT = 0x80de0001; // 2162032641 +constexpr int ORBIS_PF_AUTH_CLIENT_ERROR_OUT_OF_MEMORY = 0x80de0002; // 2162032642 +constexpr int ORBIS_PF_AUTH_CLIENT_ERROR_SIGNATURE_NOT_VALID = 0x80de0015; // 2162032661 +constexpr int ORBIS_PF_AUTH_CLIENT_ERROR_UNSUPPORTED_SYSTEM_SOFTWARE_VERSION = + 0x80de0010; // 2162032656 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_BAD_REQUEST = 0x80de0037; // 2162032695 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_CERTPS_SIGNATURE_VERIFICATION_FAILED = + 0x80de004b; // 2162032715 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_CREATED_CONSOLE_TOKEN_TOO_LARGE = + 0x80de0050; // 2162032720 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_DPS_MATCHING_CONFIRMATION_FAILED = + 0x80de004e; // 2162032718 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_DPS_SIGNATURE_VERIFICATION_FAILED = + 0x80de004d; // 2162032717 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_INTERNAL_SERVER_ERROR = 0x80de0044; // 2162032708 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_INVALID_NP_ENVIRONMENT = 0x80de0034; // 2162032692 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_INVALID_QUERY_STRING = 0x80de0033; // 2162032691 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_INVALID_REQUEST_BODY = 0x80de0032; // 2162032690 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_KSES_HASH_MATCHING_FAILED = + 0x80de004f; // 2162032719 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_MESSAGE_FORMAT_SIGNATURE_VERIFICATION_FAILED = + 0x80de004a; // 2162032714 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_NO_C1_DATA = 0x80de004c; // 2162032716 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_NOT_AUTHORIZED = 0x80de0042; // 2162032706 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_NOT_FULFILL_A_REQUESTED_VERSION = + 0x80de0051; // 2162032721 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_NULL_VALUE_NOT_ALLOWED = 0x80de0031; // 2162032689 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_RATE_LIMIT_EXCEEDED = 0x80de0043; // 2162032707 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_SERVER_BUSY = 0x80de0045; // 2162032709 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_SERVER_MAINTENANCE = 0x80de0046; // 2162032710 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_SERVICE_CLOSED = 0x80de0047; // 2162032711 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_TOOL_LARGE_BODY = 0x80de0035; // 2162032693 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_UNEXPECTED_ERROR = 0x80de0048; // 2162032712 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_UNKNOWN = 0x80de0030; // 2162032688 +constexpr int ORBIS_PF_AUTH_CLIENT_SERVER_ERROR_UNSUPPORTED_API_VERSION = 0x80de0036; // 2162032694 + +// PHOTO_PROMOTER +constexpr int ORBIS_PHOTO_PROMOTER_ERROR_CREATE_THUMBNAIL = 0x809d4050; // 2157789264 +constexpr int ORBIS_PHOTO_PROMOTER_ERROR_DB_CORRUPTED = 0x809d4051; // 2157789265 +constexpr int ORBIS_PHOTO_PROMOTER_ERROR_FILE_CORRUPTED = 0x809d4052; // 2157789266 +constexpr int ORBIS_PHOTO_PROMOTER_ERROR_FILE_NOTSUPPORTED = 0x809d4053; // 2157789267 + +// PLAYGO +constexpr int ORBIS_PLAYGO_ERROR_ALREADY_INITIALIZED = 0x80b20006; // 2159149062 +constexpr int ORBIS_PLAYGO_ERROR_ALREADY_STARTED = 0x80b20007; // 2159149063 +constexpr int ORBIS_PLAYGO_ERROR_BAD_CHUNK_ID = 0x80b2000c; // 2159149068 +constexpr int ORBIS_PLAYGO_ERROR_BAD_HANDLE = 0x80b20009; // 2159149065 +constexpr int ORBIS_PLAYGO_ERROR_BAD_LOCUS = 0x80b20010; // 2159149072 +constexpr int ORBIS_PLAYGO_ERROR_BAD_POINTER = 0x80b2000a; // 2159149066 +constexpr int ORBIS_PLAYGO_ERROR_BAD_SIZE = 0x80b2000b; // 2159149067 +constexpr int ORBIS_PLAYGO_ERROR_BAD_SPEED = 0x80b2000d; // 2159149069 +constexpr int ORBIS_PLAYGO_ERROR_EPERM = 0x80b2000f; // 2159149071 +constexpr int ORBIS_PLAYGO_ERROR_FATAL = 0x80b20002; // 2159149058 +constexpr int ORBIS_PLAYGO_ERROR_INVALID_ARGUMENT = 0x80b20004; // 2159149060 +constexpr int ORBIS_PLAYGO_ERROR_NO_MEMORY = 0x80b20003; // 2159149059 +constexpr int ORBIS_PLAYGO_ERROR_NOT_INITIALIZED = 0x80b20005; // 2159149061 +constexpr int ORBIS_PLAYGO_ERROR_NOT_STARTED = 0x80b20008; // 2159149064 +constexpr int ORBIS_PLAYGO_ERROR_NOT_SUPPORT_PLAYGO = 0x80b2000e; // 2159149070 +constexpr int ORBIS_PLAYGO_ERROR_UNKNOWN = 0x80b20001; // 2159149057 +constexpr int ORBIS_PLAYGO_ERROR_NEED_DATA_DISC = 0x80B20011; // 2135818223 + +// PROCESS_STARTER +constexpr int ORBIS_PROCESS_STARTER_ERROR_3DTV_DETECTED = 0x80a4002e; // 2158231598 +constexpr int ORBIS_PROCESS_STARTER_ERROR_ACTIVATE_DISC_PLAYER = 0x80a4002a; // 2158231594 +constexpr int ORBIS_PROCESS_STARTER_ERROR_ALLREADY_MOUNTED = 0x80a40018; // 2158231576 +constexpr int ORBIS_PROCESS_STARTER_ERROR_ALREADY_INSTALLED = 0x80a40029; // 2158231593 +constexpr int ORBIS_PROCESS_STARTER_ERROR_APPLICATION_ALLREADY_RUNNING = 0x80a40008; // 2158231560 +constexpr int ORBIS_PROCESS_STARTER_ERROR_APPLICATION_NOT_FOUND = 0x80a40022; // 2158231586 +constexpr int ORBIS_PROCESS_STARTER_ERROR_AREA_SETTING = 0x80a4002c; // 2158231596 +constexpr int ORBIS_PROCESS_STARTER_ERROR_BD_DATA_CORRUPTED = 0x80a4000b; // 2158231563 +constexpr int ORBIS_PROCESS_STARTER_ERROR_FATAL_FILESYSTEM = 0x80a40035; // 2158231605 +constexpr int ORBIS_PROCESS_STARTER_ERROR_FS_MOUNT = 0x80a40017; // 2158231575 +constexpr int ORBIS_PROCESS_STARTER_ERROR_HDD_DATA_CORRUPTED = 0x80a4000c; // 2158231564 +constexpr int ORBIS_PROCESS_STARTER_ERROR_HOST_OVERLAY_MOUNT = 0x80a40026; // 2158231590 +constexpr int ORBIS_PROCESS_STARTER_ERROR_IN_DATA_INSTALL = 0x80a40025; // 2158231589 +constexpr int ORBIS_PROCESS_STARTER_ERROR_IN_DISC_LOAD = 0x80a40028; // 2158231592 +constexpr int ORBIS_PROCESS_STARTER_ERROR_IN_PATCH_INSTALL = 0x80a40023; // 2158231587 +constexpr int ORBIS_PROCESS_STARTER_ERROR_INSUFFICIENT_BUFFER = 0x80a40006; // 2158231558 +constexpr int ORBIS_PROCESS_STARTER_ERROR_INVALID_ACCOUNT = 0x80a4002d; // 2158231597 +constexpr int ORBIS_PROCESS_STARTER_ERROR_INVALID_ARGUMENT = 0x80a40001; // 2158231553 +constexpr int ORBIS_PROCESS_STARTER_ERROR_INVALID_SERVICE_LABEL = 0x80a40019; // 2158231577 +constexpr int ORBIS_PROCESS_STARTER_ERROR_KEY_NOT_FOUND = 0x80a40004; // 2158231556 +constexpr int ORBIS_PROCESS_STARTER_ERROR_LAUNCH_PS_CLOUD_BETA_SERVICE = 0x80a4002f; // 2158231599 +constexpr int ORBIS_PROCESS_STARTER_ERROR_LAUNCH_PS_CLOUD_SERVICE = 0x80a40030; // 2158231600 +constexpr int ORBIS_PROCESS_STARTER_ERROR_LOGOUT_LAUNCH_USER = 0x80a4000f; // 2158231567 +constexpr int ORBIS_PROCESS_STARTER_ERROR_MOUNT_FULL = 0x80a40007; // 2158231559 +constexpr int ORBIS_PROCESS_STARTER_ERROR_NEED_SYSTEM_UPDATE = 0x80a40011; // 2158231569 +constexpr int ORBIS_PROCESS_STARTER_ERROR_NO_DISC_INSERT = 0x80a40009; // 2158231561 +constexpr int ORBIS_PROCESS_STARTER_ERROR_NO_ENTITLEMENT = 0x80a40033; // 2158231603 +constexpr int ORBIS_PROCESS_STARTER_ERROR_NO_GAME_RUNNING = 0x80a40002; // 2158231554 +constexpr int ORBIS_PROCESS_STARTER_ERROR_NO_REQUIRED_PATCH_DOWNLOADED = 0x80a40015; // 2158231573 +constexpr int ORBIS_PROCESS_STARTER_ERROR_NO_SPACE = 0x80a40010; // 2158231568 +constexpr int ORBIS_PROCESS_STARTER_ERROR_NOT_GAME_MINIAPP_APPRICATION = 0x80a40005; // 2158231557 +constexpr int ORBIS_PROCESS_STARTER_ERROR_NOT_MOUNTED = 0x80a40021; // 2158231585 +constexpr int ORBIS_PROCESS_STARTER_ERROR_OTHER_DISC_INSERTED = 0x80a40027; // 2158231591 +constexpr int ORBIS_PROCESS_STARTER_ERROR_OUT_OF_MEMORY = 0x80a40003; // 2158231555 +constexpr int ORBIS_PROCESS_STARTER_ERROR_PARENTAL = 0x80a4000e; // 2158231566 +constexpr int ORBIS_PROCESS_STARTER_ERROR_REGION_RESTRICTION = 0x80a4000d; // 2158231565 +constexpr int ORBIS_PROCESS_STARTER_ERROR_REQIRED_PSN_SIGNUP = 0x80a40020; // 2158231584 +constexpr int ORBIS_PROCESS_STARTER_ERROR_REQUIRED_HDCP = 0x80a40034; // 2158231604 +constexpr int ORBIS_PROCESS_STARTER_ERROR_REQUIRED_PATCH_DOWNLOADED = 0x80a40016; // 2158231574 +constexpr int ORBIS_PROCESS_STARTER_ERROR_REQUIRED_PATCH_IS_DOWNLOADING = 0x80a40014; // 2158231572 +constexpr int ORBIS_PROCESS_STARTER_ERROR_SKU_FLAG = 0x80a40024; // 2158231588 +constexpr int ORBIS_PROCESS_STARTER_ERROR_START_TIME_VALID_IN_FUTURE = 0x80a40032; // 2158231602 +constexpr int ORBIS_PROCESS_STARTER_ERROR_SYSTEM_UPDATE_IS_FOUND = 0x80a4002b; // 2158231595 +constexpr int ORBIS_PROCESS_STARTER_ERROR_UNDER_CONSTRUCTION = 0x80a40012; // 2158231570 +constexpr int ORBIS_PROCESS_STARTER_ERROR_UNDER_UPDATING = 0x80a40013; // 2158231571 +constexpr int ORBIS_PROCESS_STARTER_ERROR_UNOPENED = 0x80a40031; // 2158231601 +constexpr int ORBIS_PROCESS_STARTER_ERROR_UNSUPPORTED_DATA = 0x80a4000a; // 2158231562 +constexpr int ORBIS_PROCESS_STARTER_ERROR_UPDATE = 0x80a40036; // 2158231606 + +// PROFILE_CACHE +constexpr int ORBIS_PROFILE_CACHE_ERROR_ALREADY_INITIALIZED = 0x811e0002; // 2166226946 +constexpr int ORBIS_PROFILE_CACHE_ERROR_INTERNAL = 0x811e0005; // 2166226949 +constexpr int ORBIS_PROFILE_CACHE_ERROR_INVALID_ARGUMENT = 0x811e0003; // 2166226947 +constexpr int ORBIS_PROFILE_CACHE_ERROR_NO_MEMORY = 0x811e0004; // 2166226948 +constexpr int ORBIS_PROFILE_CACHE_ERROR_NOT_INITIALIZED = 0x811e0001; // 2166226945 + +// REMOTEPLAY +constexpr int ORBIS_REMOTEPLAY_ERROR_ALREADY_INITIALIZED = 0x80fc0003; // 2163998723 +constexpr int ORBIS_REMOTEPLAY_ERROR_BASE64_INVALID_CHARACTER = 0x80fc1031; // 2164002865 +constexpr int ORBIS_REMOTEPLAY_ERROR_BASE64_INVALID_LENGTH = 0x80fc1032; // 2164002866 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_AUTHENTICATION = 0x80fc1021; // 2164002849 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_BUFFER_OVERFLOW = 0x80fc1008; // 2164002824 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_BUSY = 0x80fc1006; // 2164002822 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_DISAPPROVAL = 0x80fc1023; // 2164002851 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_FATAL = 0x80fc1003; // 2164002819 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_INVALID_VALUE = 0x80fc1004; // 2164002820 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_NETWORK_CLOSED = 0x80fc1013; // 2164002835 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_NETWORK_ILLEGAL_DATA = 0x80fc1011; // 2164002833 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_NETWORK_SEND = 0x80fc1014; // 2164002836 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_NETWORK_TIMEOUT = 0x80fc1012; // 2164002834 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_NOT_FOUND = 0x80fc1005; // 2164002821 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_NOT_INITIALIZED = 0x80fc1007; // 2164002823 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_NP_ONLINE_ID_INVALID = 0x80fc1040; // 2164002880 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_REGIST_COMMAND_DATA_INVLID = 0x80fc1044; // 2164002884 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_REGIST_COMMAND_INVLID = 0x80fc1043; // 2164002883 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_REGIST_DEVICE_LIMITED = 0x80fc1042; // 2164002882 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_REGIST_DEVICE_MISS = 0x80fc1041; // 2164002881 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_REGIST_NETWORK_CLOSED = 0x80fc1045; // 2164002885 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_REGIST_NETWORK_TIMEOUT = 0x80fc1046; // 2164002886 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_REGIST_PINCODE_INVALID = 0x80fc1047; // 2164002887 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_REMOTEPLAY_CONNECT_INVALID = 0x80fc1053; // 2164002899 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_REMOTEPLAY_CONNECT_INVALID_BY_DISCPLAYER = + 0x80fc1055; // 2164002901 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_REMOTEPLAY_CONNECT_INVALID_BY_NON_60HZ = + 0x80fc1056; // 2164002902 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_REMOTEPLAY_CONNECT_INVALID_BY_RESTART = + 0x80fc1054; // 2164002900 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_REMOTEPLAY_CONNECT_LIMITED = 0x80fc1050; // 2164002896 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_REMOTEPLAY_SETTING_INVALID = 0x80fc1052; // 2164002898 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_REMOTEPLAY_VERSION_UNMATCH = 0x80fc1051; // 2164002897 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTERNAL_UNMATCHED_VERSION = 0x80fc1022; // 2164002850 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTRENAL_CANCEL = 0x80fc1001; // 2164002817 +constexpr int ORBIS_REMOTEPLAY_ERROR_INTRENAL_TIMEOUT = 0x80fc1002; // 2164002818 +constexpr int ORBIS_REMOTEPLAY_ERROR_INVALID_ARGS = 0x80fc0001; // 2163998721 +constexpr int ORBIS_REMOTEPLAY_ERROR_INVALID_STATE = 0x80fc0101; // 2163998977 +constexpr int ORBIS_REMOTEPLAY_ERROR_NOT_CONNECTED = 0x80fc0102; // 2163998978 +constexpr int ORBIS_REMOTEPLAY_ERROR_NOT_INITIALIZED = 0x80fc0004; // 2163998724 +constexpr int ORBIS_REMOTEPLAY_ERROR_OUT_OF_MEMORY = 0x80fc0002; // 2163998722 +constexpr int ORBIS_REMOTEPLAY_ERROR_REGISTERD = 0x80fc0103; // 2163998979 + +// RIFMGR +constexpr int ORBIS_RIFMGR_ERROR_ABORTED = 0x80e9000b; // 2162753547 +constexpr int ORBIS_RIFMGR_ERROR_ACTIVATION_SLOT_FULL = 0x80e90010; // 2162753552 +constexpr int ORBIS_RIFMGR_ERROR_ALREADY_INITED = 0x80e90002; // 2162753538 +constexpr int ORBIS_RIFMGR_ERROR_BEFORE_INIT = 0x80e90001; // 2162753537 +constexpr int ORBIS_RIFMGR_ERROR_BROKEN = 0x80e90003; // 2162753539 +constexpr int ORBIS_RIFMGR_ERROR_BUSY = 0x80e90013; // 2162753555 +constexpr int ORBIS_RIFMGR_ERROR_BUSY_ACTIVATING = 0x80e90017; // 2162753559 +constexpr int ORBIS_RIFMGR_ERROR_DEACTIVATED = 0x80e90012; // 2162753554 +constexpr int ORBIS_RIFMGR_ERROR_DRM_FREE_RIF = 0x80e90019; // 2162753561 +constexpr int ORBIS_RIFMGR_ERROR_EXPIRED = 0x80e9000f; // 2162753551 +constexpr int ORBIS_RIFMGR_ERROR_FAKE_RIF = 0x80e90018; // 2162753560 +constexpr int ORBIS_RIFMGR_ERROR_INTERNAL = 0x80e90009; // 2162753545 +constexpr int ORBIS_RIFMGR_ERROR_INVALID_FORMAT = 0x80e90005; // 2162753541 +constexpr int ORBIS_RIFMGR_ERROR_INVALID_ID = 0x80e90006; // 2162753542 +constexpr int ORBIS_RIFMGR_ERROR_INVALID_KAMAJI_RESPONSE = 0x80e9000c; // 2162753548 +constexpr int ORBIS_RIFMGR_ERROR_INVALID_SECURE_RESPONSE = 0x80e9000d; // 2162753549 +constexpr int ORBIS_RIFMGR_ERROR_INVALID_VALUE = 0x80e90007; // 2162753543 +constexpr int ORBIS_RIFMGR_ERROR_KDS_UNREACHABLE = 0x80e90011; // 2162753553 +constexpr int ORBIS_RIFMGR_ERROR_NOT_ACTIVE_SIGNED_IN = 0x80e90016; // 2162753558 +constexpr int ORBIS_RIFMGR_ERROR_NOT_FOUND = 0x80e90004; // 2162753540 +constexpr int ORBIS_RIFMGR_ERROR_OUT_OF_MEMORY = 0x80e9000a; // 2162753546 +constexpr int ORBIS_RIFMGR_ERROR_OUT_OF_SIZE = 0x80e90008; // 2162753544 +constexpr int ORBIS_RIFMGR_ERROR_PERSISTENT_ACTIVATION_SLOT_FULL = 0x80e90014; // 2162753556 +constexpr int ORBIS_RIFMGR_ERROR_RIF_UPDATE_FAILED = 0x80e90015; // 2162753557 +constexpr int ORBIS_RIFMGR_ERROR_START_TIME_VALID_IN_FUTURE = 0x80e9000e; // 2162753550 + +// RUDP +constexpr int ORBIS_RUDP_ERROR_ADDR_IN_USE = 0x8077001c; // 2155282460 +constexpr int ORBIS_RUDP_ERROR_ALREADY_BOUND = 0x8077001d; // 2155282461 +constexpr int ORBIS_RUDP_ERROR_ALREADY_ESTABLISHED = 0x80770025; // 2155282469 +constexpr int ORBIS_RUDP_ERROR_ALREADY_EXISTS = 0x8077001e; // 2155282462 +constexpr int ORBIS_RUDP_ERROR_ALREADY_INITIALIZED = 0x80770002; // 2155282434 +constexpr int ORBIS_RUDP_ERROR_BUFFER_TOO_SMALL = 0x8077001a; // 2155282458 +constexpr int ORBIS_RUDP_ERROR_CANCELLED = 0x80770014; // 2155282452 +constexpr int ORBIS_RUDP_ERROR_CONN_QUALITY_LEVEL_MISMATCH = 0x8077000e; // 2155282446 +constexpr int ORBIS_RUDP_ERROR_CONN_REFUSED = 0x8077000a; // 2155282442 +constexpr int ORBIS_RUDP_ERROR_CONN_RESET = 0x80770009; // 2155282441 +constexpr int ORBIS_RUDP_ERROR_CONN_TIMEOUT = 0x8077000b; // 2155282443 +constexpr int ORBIS_RUDP_ERROR_CONN_TRANSPORT_TYPE_MISMATCH = 0x8077000d; // 2155282445 +constexpr int ORBIS_RUDP_ERROR_CONN_VERSION_MISMATCH = 0x8077000c; // 2155282444 +constexpr int ORBIS_RUDP_ERROR_END_OF_DATA = 0x80770024; // 2155282468 +constexpr int ORBIS_RUDP_ERROR_IN_PROGRESS = 0x80770021; // 2155282465 +constexpr int ORBIS_RUDP_ERROR_INTERNAL = 0x80770008; // 2155282440 +constexpr int ORBIS_RUDP_ERROR_INVALID_ARGUMENT = 0x80770004; // 2155282436 +constexpr int ORBIS_RUDP_ERROR_INVALID_CONTEXT_ID = 0x80770003; // 2155282435 +constexpr int ORBIS_RUDP_ERROR_INVALID_MUXMODE = 0x80770006; // 2155282438 +constexpr int ORBIS_RUDP_ERROR_INVALID_OPTION = 0x80770005; // 2155282437 +constexpr int ORBIS_RUDP_ERROR_INVALID_POLL_ID = 0x8077001f; // 2155282463 +constexpr int ORBIS_RUDP_ERROR_INVALID_SOCKET = 0x80770019; // 2155282457 +constexpr int ORBIS_RUDP_ERROR_INVALID_VPORT = 0x80770015; // 2155282453 +constexpr int ORBIS_RUDP_ERROR_KEEP_ALIVE_FAILURE = 0x80770026; // 2155282470 +constexpr int ORBIS_RUDP_ERROR_MEMLEAK = 0x807700ff; // 2155282687 +constexpr int ORBIS_RUDP_ERROR_MEMORY = 0x80770007; // 2155282439 +constexpr int ORBIS_RUDP_ERROR_MSG_MALFORMED = 0x8077001b; // 2155282459 +constexpr int ORBIS_RUDP_ERROR_MSG_TOO_LARGE = 0x80770012; // 2155282450 +constexpr int ORBIS_RUDP_ERROR_NO_EVENT_HANDLER = 0x80770022; // 2155282466 +constexpr int ORBIS_RUDP_ERROR_NOT_ACCEPTABLE = 0x80770011; // 2155282449 +constexpr int ORBIS_RUDP_ERROR_NOT_BOUND = 0x80770013; // 2155282451 +constexpr int ORBIS_RUDP_ERROR_NOT_INITIALIZED = 0x80770001; // 2155282433 +constexpr int ORBIS_RUDP_ERROR_PAYLOAD_TOO_LARGE = 0x80770023; // 2155282467 +constexpr int ORBIS_RUDP_ERROR_THREAD = 0x8077000f; // 2155282447 +constexpr int ORBIS_RUDP_ERROR_THREAD_IN_USE = 0x80770010; // 2155282448 +constexpr int ORBIS_RUDP_ERROR_TOO_MANY_CONTEXTS = 0x80770020; // 2155282464 +constexpr int ORBIS_RUDP_ERROR_VPORT_EXHAUSTED = 0x80770018; // 2155282456 +constexpr int ORBIS_RUDP_ERROR_VPORT_IN_USE = 0x80770017; // 2155282455 +constexpr int ORBIS_RUDP_ERROR_WOULDBLOCK = 0x80770016; // 2155282454 + +// SAFEMODE +constexpr int ORBIS_SAFEMODE_ERROR_CLOSE = 0x80190063; // 2149122147 +constexpr int ORBIS_SAFEMODE_ERROR_CLOSE_ICC_CONFIGURATION = 0x801900a4; // 2149122212 +constexpr int ORBIS_SAFEMODE_ERROR_CLOSE_POWER_BUTTON = 0x801900a1; // 2149122209 +constexpr int ORBIS_SAFEMODE_ERROR_ENOMEM = 0x80190001; // 2149122049 +constexpr int ORBIS_SAFEMODE_ERROR_GETMNTINFO = 0x8019006f; // 2149122159 +constexpr int ORBIS_SAFEMODE_ERROR_HDD_IOCTL = 0x80190092; // 2149122194 +constexpr int ORBIS_SAFEMODE_ERROR_HDD_NONE = 0x80190093; // 2149122195 +constexpr int ORBIS_SAFEMODE_ERROR_HDD_OPEN = 0x80190091; // 2149122193 +constexpr int ORBIS_SAFEMODE_ERROR_HDD_SATA_BRIDGE = 0x80190095; // 2149122197 +constexpr int ORBIS_SAFEMODE_ERROR_HDD_SIZE_ERROR = 0x80190094; // 2149122196 +constexpr int ORBIS_SAFEMODE_ERROR_HDD_STAT = 0x80190090; // 2149122192 +constexpr int ORBIS_SAFEMODE_ERROR_INVAL = 0x80190031; // 2149122097 +constexpr int ORBIS_SAFEMODE_ERROR_IO_UPDATE_FILE_DISC = 0x80190035; // 2149122101 +constexpr int ORBIS_SAFEMODE_ERROR_IO_UPDATE_FILE_USB = 0x80190034; // 2149122100 +constexpr int ORBIS_SAFEMODE_ERROR_IOCTL_ICC_CONFIGURATION = 0x801900a5; // 2149122213 +constexpr int ORBIS_SAFEMODE_ERROR_KILL = 0x80190002; // 2149122050 +constexpr int ORBIS_SAFEMODE_ERROR_MKDIR = 0x80190067; // 2149122151 +constexpr int ORBIS_SAFEMODE_ERROR_NETCTL_CONNECT_TIME_OUT = 0x801900b0; // 2149122224 +constexpr int ORBIS_SAFEMODE_ERROR_NETWORK_CONNECTION_DISABLED = 0x801900b1; // 2149122225 +constexpr int ORBIS_SAFEMODE_ERROR_NMOUNT_DISC = 0x8019006e; // 2149122158 +constexpr int ORBIS_SAFEMODE_ERROR_NMOUNT_EAP_USER = 0x80190071; // 2149122161 +constexpr int ORBIS_SAFEMODE_ERROR_NMOUNT_PREINST = 0x8019006d; // 2149122157 +constexpr int ORBIS_SAFEMODE_ERROR_NMOUNT_SYSTEM_DATA = 0x8019006b; // 2149122155 +constexpr int ORBIS_SAFEMODE_ERROR_NMOUNT_UPDATE = 0x80190069; // 2149122153 +constexpr int ORBIS_SAFEMODE_ERROR_NMOUNT_USB = 0x80190068; // 2149122152 +constexpr int ORBIS_SAFEMODE_ERROR_NMOUNT_USB_EINVAL = 0x80190100; // 2149122304 +constexpr int ORBIS_SAFEMODE_ERROR_NMOUNT_USB_EIO = 0x80190101; // 2149122305 +constexpr int ORBIS_SAFEMODE_ERROR_NMOUNT_USB_ENXIO = 0x80190102; // 2149122306 +constexpr int ORBIS_SAFEMODE_ERROR_NMOUNT_USER = 0x8019006c; // 2149122156 +constexpr int ORBIS_SAFEMODE_ERROR_NOT_FOUND = 0x80190030; // 2149122096 +constexpr int ORBIS_SAFEMODE_ERROR_NOT_RECOVERY_PUP = 0x80190032; // 2149122098 +constexpr int ORBIS_SAFEMODE_ERROR_OPEN_ICC_CONFIGURATION = 0x801900a3; // 2149122211 +constexpr int ORBIS_SAFEMODE_ERROR_OPEN_POWER_BUTTON = 0x801900a0; // 2149122208 +constexpr int ORBIS_SAFEMODE_ERROR_OPEN_READ = 0x80190061; // 2149122145 +constexpr int ORBIS_SAFEMODE_ERROR_OPEN_WRITE = 0x80190062; // 2149122146 +constexpr int ORBIS_SAFEMODE_ERROR_PWRITE = 0x80190070; // 2149122160 +constexpr int ORBIS_SAFEMODE_ERROR_READ = 0x80190064; // 2149122148 +constexpr int ORBIS_SAFEMODE_ERROR_READ_POWER_BUTTON = 0x801900a2; // 2149122210 +constexpr int ORBIS_SAFEMODE_ERROR_STAT = 0x80190060; // 2149122144 +constexpr int ORBIS_SAFEMODE_ERROR_STAT_USB_EIO = 0x80190110; // 2149122320 +constexpr int ORBIS_SAFEMODE_ERROR_STAT_USB_ENXIO = 0x80190111; // 2149122321 +constexpr int ORBIS_SAFEMODE_ERROR_UNLINK = 0x80190066; // 2149122150 +constexpr int ORBIS_SAFEMODE_ERROR_UNMOUNT = 0x8019006a; // 2149122154 +constexpr int ORBIS_SAFEMODE_ERROR_UNSUPPORTED_PUP_BETA = 0x80190033; // 2149122099 +constexpr int ORBIS_SAFEMODE_ERROR_WRITE = 0x80190065; // 2149122149 + +// SAVE_DATA +constexpr int ORBIS_SAVE_DATA_ERROR_ABORT = 0x809fa000; // 2157944832 +constexpr int ORBIS_SAVE_DATA_ERROR_AUTO_UPLOAD_SETTING_ARG = 0x809fa00a; // 2157944842 +constexpr int ORBIS_SAVE_DATA_ERROR_AUTO_UPLOAD_SETTING_MAGIC = 0x809fa009; // 2157944841 +constexpr int ORBIS_SAVE_DATA_ERROR_BAD_MOUNTED = 0x809f000d; // 2157903885 +constexpr int ORBIS_SAVE_DATA_ERROR_BROKEN = 0x809f000f; // 2157903887 +constexpr int ORBIS_SAVE_DATA_ERROR_BUSY = 0x809f0003; // 2157903875 +constexpr int ORBIS_SAVE_DATA_ERROR_BUSY_FOR_SAVING = 0x809fa011; // 2157944849 +constexpr int ORBIS_SAVE_DATA_ERROR_CLOUD_NO_SPACE = 0x809fa00c; // 2157944844 +constexpr int ORBIS_SAVE_DATA_ERROR_COPY_FORMAT = 0x809fa004; // 2157944836 +constexpr int ORBIS_SAVE_DATA_ERROR_DATA_IN_USE = 0x809fa007; // 2157944839 +constexpr int ORBIS_SAVE_DATA_ERROR_DEX_TOOL_SAVED = 0x809fa00e; // 2157944846 +constexpr int ORBIS_SAVE_DATA_ERROR_EXISTS = 0x809f0007; // 2157903879 +constexpr int ORBIS_SAVE_DATA_ERROR_FAKED_OWNER = 0x809fa00d; // 2157944845 +constexpr int ORBIS_SAVE_DATA_ERROR_FILE_NOT_FOUND = 0x809f000e; // 2157903886 +constexpr int ORBIS_SAVE_DATA_ERROR_FINALIZED = 0x809fa00f; // 2157944847 +constexpr int ORBIS_SAVE_DATA_ERROR_FINGERPRINT_MISMATCH = 0x809f0006; // 2157903878 +constexpr int ORBIS_SAVE_DATA_ERROR_INTERNAL = 0x809f000b; // 2157903883 +constexpr int ORBIS_SAVE_DATA_ERROR_INVALID_DIRNAME = 0x809fa010; // 2157944848 +constexpr int ORBIS_SAVE_DATA_ERROR_INVALID_LOGIN_USER = 0x809f0011; // 2157903889 +constexpr int ORBIS_SAVE_DATA_ERROR_MEMORY_NOT_READY = 0x809f0012; // 2157903890 +constexpr int ORBIS_SAVE_DATA_ERROR_MOUNT_FULL = 0x809f000c; // 2157903884 +constexpr int ORBIS_SAVE_DATA_ERROR_MOUNT_INHIBIT = 0x809f0010; // 2157903888 +constexpr int ORBIS_SAVE_DATA_ERROR_NO_PERMISSION = 0x809f0005; // 2157903877 +constexpr int ORBIS_SAVE_DATA_ERROR_NO_SPACE = 0x809f0009; // 2157903881 +constexpr int ORBIS_SAVE_DATA_ERROR_NO_SPACE_FS = 0x809f000a; // 2157903882 +constexpr int ORBIS_SAVE_DATA_ERROR_NOT_FOUND = 0x809f0008; // 2157903880 +constexpr int ORBIS_SAVE_DATA_ERROR_NOT_INITIALIZED = 0x809f0001; // 2157903873 +constexpr int ORBIS_SAVE_DATA_ERROR_NOT_MOUNTED = 0x809f0004; // 2157903876 +constexpr int ORBIS_SAVE_DATA_ERROR_NOT_PSN_BINDED = 0x809fa002; // 2157944834 +constexpr int ORBIS_SAVE_DATA_ERROR_OUT_OF_MEMORY = 0x809f0002; // 2157903874 +constexpr int ORBIS_SAVE_DATA_ERROR_OWNER_MISMATCH = 0x809fa003; // 2157944835 +constexpr int ORBIS_SAVE_DATA_ERROR_PARAMETER = 0x809f0000; // 2157903872 +constexpr int ORBIS_SAVE_DATA_ERROR_PROHIBITED_DATA = 0x809fa006; // 2157944838 +constexpr int ORBIS_SAVE_DATA_ERROR_REACHED_MAX_COUNT = 0x809fa005; // 2157944837 +constexpr int ORBIS_SAVE_DATA_ERROR_REVISION_CONFLICT = 0x809fa008; // 2157944840 +constexpr int ORBIS_SAVE_DATA_ERROR_UNSUPPORTED = 0x809fa001; // 2157944833 +constexpr int ORBIS_SAVE_DATA_ERROR_UPLOAD_FORMAT = 0x809fa00b; // 2157944843 +constexpr int ORBIS_SAVE_DATA_I_ERROR_ABORT = 0x809f8010; // 2157936656 +constexpr int ORBIS_SAVE_DATA_I_ERROR_ALIAS_FULL = 0x809f8030; // 2157936688 +constexpr int ORBIS_SAVE_DATA_I_ERROR_ALIAS_UNKNOWN = 0x809f8031; // 2157936689 +constexpr int ORBIS_SAVE_DATA_I_ERROR_ALREADY_INITIALIZED = 0x809f8001; // 2157936641 +constexpr int ORBIS_SAVE_DATA_I_ERROR_ARCHIVE_BROKEN_IMAGE = 0x809f80a1; // 2157936801 +constexpr int ORBIS_SAVE_DATA_I_ERROR_ARCHIVE_WRONG_STATUS = 0x809f80a0; // 2157936800 +constexpr int ORBIS_SAVE_DATA_I_ERROR_ARCHIVE_Z_BUF = 0x809f80a6; // 2157936806 +constexpr int ORBIS_SAVE_DATA_I_ERROR_ARCHIVE_Z_DATA = 0x809f80a4; // 2157936804 +constexpr int ORBIS_SAVE_DATA_I_ERROR_ARCHIVE_Z_ERRNO = 0x809f80a2; // 2157936802 +constexpr int ORBIS_SAVE_DATA_I_ERROR_ARCHIVE_Z_MEM = 0x809f80a5; // 2157936805 +constexpr int ORBIS_SAVE_DATA_I_ERROR_ARCHIVE_Z_STREAM = 0x809f80a3; // 2157936803 +constexpr int ORBIS_SAVE_DATA_I_ERROR_ARCHIVE_Z_VERSION = 0x809f80a7; // 2157936807 +constexpr int ORBIS_SAVE_DATA_I_ERROR_AUTO_UPLOAD_SETTING_OFF = 0x809f8400; // 2157937664 +constexpr int ORBIS_SAVE_DATA_I_ERROR_BROKEN = 0x809f8055; // 2157936725 +constexpr int ORBIS_SAVE_DATA_I_ERROR_BUFFER_SIZE = 0x809f8007; // 2157936647 +constexpr int ORBIS_SAVE_DATA_I_ERROR_CACHE_CONFLICT = 0x809f80c2; // 2157936834 +constexpr int ORBIS_SAVE_DATA_I_ERROR_CACHE_DATA_NOT_FOUND = 0x809f80c1; // 2157936833 +constexpr int ORBIS_SAVE_DATA_I_ERROR_CACHE_EDIT_FILE = 0x809f80c3; // 2157936835 +constexpr int ORBIS_SAVE_DATA_I_ERROR_CACHE_FILE_NOT_OPEN = 0x809f80c0; // 2157936832 +constexpr int ORBIS_SAVE_DATA_I_ERROR_CANCELED = 0x809f8011; // 2157936657 +constexpr int ORBIS_SAVE_DATA_I_ERROR_CHECK_KEYSTONE = 0x809f805d; // 2157936733 +constexpr int ORBIS_SAVE_DATA_I_ERROR_COPY_FORMAT = 0x809f8080; // 2157936768 +constexpr int ORBIS_SAVE_DATA_I_ERROR_CREATE_PFS_IMAGE = 0x809f8059; // 2157936729 +constexpr int ORBIS_SAVE_DATA_I_ERROR_DB_NOT_FOUND = 0x809f8070; // 2157936752 +constexpr int ORBIS_SAVE_DATA_I_ERROR_DB_NOT_FOUND_DIR_EXIST = 0x809f8071; // 2157936753 +constexpr int ORBIS_SAVE_DATA_I_ERROR_DB_NOT_FOUND_RECORD_ITEM = 0x809f8072; // 2157936754 +constexpr int ORBIS_SAVE_DATA_I_ERROR_DIR_EXIST = 0x809f8024; // 2157936676 +constexpr int ORBIS_SAVE_DATA_I_ERROR_DIR_NOT_FOUND = 0x809f8022; // 2157936674 +constexpr int ORBIS_SAVE_DATA_I_ERROR_DOWNLOAD_DATA_BROKEN = 0x809f8110; // 2157936912 +constexpr int ORBIS_SAVE_DATA_I_ERROR_DOWNLOAD_DATA_IN_USE = 0x809f8111; // 2157936913 +constexpr int ORBIS_SAVE_DATA_I_ERROR_DOWNLOAD_NO_APP_INSTALLED = 0x809f8113; // 2157936915 +constexpr int ORBIS_SAVE_DATA_I_ERROR_DOWNLOAD_NOT_FOUND = 0x809f8114; // 2157936916 +constexpr int ORBIS_SAVE_DATA_I_ERROR_DOWNLOAD_STORAGE_NO_SPACE = 0x809f8112; // 2157936914 +constexpr int ORBIS_SAVE_DATA_I_ERROR_ENTRY_NOT_FOUND = 0x809f8500; // 2157937920 +constexpr int ORBIS_SAVE_DATA_I_ERROR_FAKE_BROKEN = 0x809f805a; // 2157936730 +constexpr int ORBIS_SAVE_DATA_I_ERROR_FAKED_OWNER = 0x809f8082; // 2157936770 +constexpr int ORBIS_SAVE_DATA_I_ERROR_FILE_EXIST = 0x809f8025; // 2157936677 +constexpr int ORBIS_SAVE_DATA_I_ERROR_FILE_NOT_FOUND = 0x809f8023; // 2157936675 +constexpr int ORBIS_SAVE_DATA_I_ERROR_FILE_ORGANIZATION = 0x809f805f; // 2157936735 +constexpr int ORBIS_SAVE_DATA_I_ERROR_FINALIZED = 0x809f8026; // 2157936678 +constexpr int ORBIS_SAVE_DATA_I_ERROR_FINGERPRINT = 0x809f805c; // 2157936732 +constexpr int ORBIS_SAVE_DATA_I_ERROR_HIERARCHY_LIMIT_OVER = 0x809f8021; // 2157936673 +constexpr int ORBIS_SAVE_DATA_I_ERROR_INTERNAL = 0x809f804f; // 2157936719 +constexpr int ORBIS_SAVE_DATA_I_ERROR_INVALID_APIID = 0x809f804e; // 2157936718 +constexpr int ORBIS_SAVE_DATA_I_ERROR_INVALID_ARGUMENT = 0x809f8004; // 2157936644 +constexpr int ORBIS_SAVE_DATA_I_ERROR_INVALID_ARGUMENT_SERVER = 0x809f8008; // 2157936648 +constexpr int ORBIS_SAVE_DATA_I_ERROR_INVALID_DIRNAME = 0x809f8014; // 2157936660 +constexpr int ORBIS_SAVE_DATA_I_ERROR_INVALID_LOGIN_USER = 0x809f8009; // 2157936649 +constexpr int ORBIS_SAVE_DATA_I_ERROR_INVALID_POINTER = 0x809f8006; // 2157936646 +constexpr int ORBIS_SAVE_DATA_I_ERROR_KEYSTONE = 0x809f805e; // 2157936734 +constexpr int ORBIS_SAVE_DATA_I_ERROR_MEMORY_BUSY = 0x809f8601; // 2157938177 +constexpr int ORBIS_SAVE_DATA_I_ERROR_MEMORY_BUSY_FOR_SAVING = 0x809f8602; // 2157938178 +constexpr int ORBIS_SAVE_DATA_I_ERROR_MEMORY_NOT_READY = 0x809f8600; // 2157938176 +constexpr int ORBIS_SAVE_DATA_I_ERROR_MOUNT_ALREADY = 0x809f8032; // 2157936690 +constexpr int ORBIS_SAVE_DATA_I_ERROR_MOUNT_RDONLY = 0x809f8034; // 2157936692 +constexpr int ORBIS_SAVE_DATA_I_ERROR_MOUNT_SUSPEND_STARTED = 0x809f8038; // 2157936696 +constexpr int ORBIS_SAVE_DATA_I_ERROR_MOUNT_UNKNOWN = 0x809f8033; // 2157936691 +constexpr int ORBIS_SAVE_DATA_I_ERROR_MOUNT_USER_LOGOUTING = 0x809f8039; // 2157936697 +constexpr int ORBIS_SAVE_DATA_I_ERROR_NO_SPACE_FS = 0x809f8037; // 2157936695 +constexpr int ORBIS_SAVE_DATA_I_ERROR_NO_SPACE_MOUNT_POINT = 0x809f8036; // 2157936694 +constexpr int ORBIS_SAVE_DATA_I_ERROR_NOT_INITIALIZED = 0x809f8002; // 2157936642 +constexpr int ORBIS_SAVE_DATA_I_ERROR_NOT_INITIALIZED_MOUNT_MAN = 0x809f8035; // 2157936693 +constexpr int ORBIS_SAVE_DATA_I_ERROR_NOT_SUPPORTED = 0x809f8005; // 2157936645 +constexpr int ORBIS_SAVE_DATA_I_ERROR_OUT_OF_MEMORY = 0x809f8003; // 2157936643 +constexpr int ORBIS_SAVE_DATA_I_ERROR_PARAMSFO_BROKEN = 0x809f8050; // 2157936720 +constexpr int ORBIS_SAVE_DATA_I_ERROR_PARAMSFO_BROKEN_OPENPSID = 0x809f8051; // 2157936721 +constexpr int ORBIS_SAVE_DATA_I_ERROR_PARAMSFO_DEX_TOOL_SAVED = 0x809f8054; // 2157936724 +constexpr int ORBIS_SAVE_DATA_I_ERROR_PARAMSFO_LOCAL_OWNER = 0x809f8052; // 2157936722 +constexpr int ORBIS_SAVE_DATA_I_ERROR_PARAMSFO_PSN_BIND = 0x809f8056; // 2157936726 +constexpr int ORBIS_SAVE_DATA_I_ERROR_PARAMSFO_PSN_OWNER = 0x809f8053; // 2157936723 +constexpr int ORBIS_SAVE_DATA_I_ERROR_PATH = 0x809f8020; // 2157936672 +constexpr int ORBIS_SAVE_DATA_I_ERROR_PFS_MOUNT = 0x809f8058; // 2157936728 +constexpr int ORBIS_SAVE_DATA_I_ERROR_SEALED_KEY = 0x809f8057; // 2157936727 +constexpr int ORBIS_SAVE_DATA_I_ERROR_SKIP = 0x809f8013; // 2157936659 +constexpr int ORBIS_SAVE_DATA_I_ERROR_TIMEOUT = 0x809f8012; // 2157936658 +constexpr int ORBIS_SAVE_DATA_I_ERROR_UNSUPPORTED_FORMAT = 0x809f800a; // 2157936650 +constexpr int ORBIS_SAVE_DATA_I_ERROR_UPLOAD_ACCOUNT_MISMATCH = 0x809f80e9; // 2157936873 +constexpr int ORBIS_SAVE_DATA_I_ERROR_UPLOAD_BLOCKS_MAX = 0x809f80e6; // 2157936870 +constexpr int ORBIS_SAVE_DATA_I_ERROR_UPLOAD_CLOUD_MAX_SIZE = 0x809f80e2; // 2157936866 +constexpr int ORBIS_SAVE_DATA_I_ERROR_UPLOAD_CLOUD_NO_SPACE = 0x809f80e0; // 2157936864 +constexpr int ORBIS_SAVE_DATA_I_ERROR_UPLOAD_DATA_BROKEN = 0x809f80e3; // 2157936867 +constexpr int ORBIS_SAVE_DATA_I_ERROR_UPLOAD_DATA_IN_USE = 0x809f80e4; // 2157936868 +constexpr int ORBIS_SAVE_DATA_I_ERROR_UPLOAD_FAKED_OWNER = 0x809f80e8; // 2157936872 +constexpr int ORBIS_SAVE_DATA_I_ERROR_UPLOAD_FORMAT = 0x809f8081; // 2157936769 +constexpr int ORBIS_SAVE_DATA_I_ERROR_UPLOAD_LIST_MAGIC = 0x809f8090; // 2157936784 +constexpr int ORBIS_SAVE_DATA_I_ERROR_UPLOAD_LIST_NOT_FOUND = 0x809f8200; // 2157937152 +constexpr int ORBIS_SAVE_DATA_I_ERROR_UPLOAD_NOT_SUPPORTED = 0x809f80e5; // 2157936869 +constexpr int ORBIS_SAVE_DATA_I_ERROR_UPLOAD_RESIGN_JSON_FORMAT = 0x809f80ea; // 2157936874 +constexpr int ORBIS_SAVE_DATA_I_ERROR_UPLOAD_SETTING_EDIT = 0x809f8301; // 2157937409 +constexpr int ORBIS_SAVE_DATA_I_ERROR_UPLOAD_SETTING_MAGIC = 0x809f8300; // 2157937408 +constexpr int ORBIS_SAVE_DATA_I_ERROR_UPLOAD_STORAGE_NO_SPACE = 0x809f80e1; // 2157936865 +constexpr int ORBIS_SAVE_DATA_I_ERROR_UPLOAD_USER_MISMATCH = 0x809f80e7; // 2157936871 +constexpr int ORBIS_SAVE_DATA_I_ERROR_USER_NOT_LOGIN = 0x809f806f; // 2157936751 +constexpr int ORBIS_SAVE_DATA_ERROR_BACKUP_BUSY = 0x809F0013; // 2157903891 +constexpr int ORBIS_SAVE_DATA_ERROR_NOT_REGIST_CALLBACK = 0x809F0015; // 2157903893 +constexpr int ORBIS_SAVE_DATA_ERROR_LIMITATION_OVER = 0x809F0017; // 2157903895 +constexpr int ORBIS_SAVE_DATA_ERROR_EVENT_BUSY = 0x809F0018; // 2157903896 +constexpr int ORBIS_SAVE_DATA_ERROR_PARAMSFO_TRANSFER_TITLE_ID_NOT_FOUND = 0x809F0019; // 2157903897 + +// SCREENSHOT +constexpr int ORBIS_SCREENSHOT_ERROR_ABORT = 0x80be0103; // 2159935747 +constexpr int ORBIS_SCREENSHOT_ERROR_CAPTURE_BUSY = 0x80be0009; // 2159935497 +constexpr int ORBIS_SCREENSHOT_ERROR_CAPTURE_CANCELED = 0x80be000a; // 2159935498 +constexpr int ORBIS_SCREENSHOT_ERROR_CAPTURE_FAILED = 0x80be0008; // 2159935496 +constexpr int ORBIS_SCREENSHOT_ERROR_CONTENT_FULL = 0x80be000c; // 2159935500 +constexpr int ORBIS_SCREENSHOT_ERROR_DISPLAY_BUFFER_NOT_IN_USE = 0x80be0133; // 2159935795 +constexpr int ORBIS_SCREENSHOT_ERROR_DISPLAY_BUFFER_ON_MUTE = 0x80be0135; // 2159935797 +constexpr int ORBIS_SCREENSHOT_ERROR_DISPLAY_BUFFER_RETRY_COUNT_MAX = 0x80be0134; // 2159935796 +constexpr int ORBIS_SCREENSHOT_ERROR_DISPLAY_BUFFER_TOO_BIG = 0x80be0136; // 2159935798 +constexpr int ORBIS_SCREENSHOT_ERROR_FILE_NOT_FOUND = 0x80be0003; // 2159935491 +constexpr int ORBIS_SCREENSHOT_ERROR_GOTO_PROCESS_SUSPEND = 0x80be0132; // 2159935794 +constexpr int ORBIS_SCREENSHOT_ERROR_INTERNAL = 0x80be0006; // 2159935494 +constexpr int ORBIS_SCREENSHOT_ERROR_INVALID_ARGUMENT = 0x80be0001; // 2159935489 +constexpr int ORBIS_SCREENSHOT_ERROR_INVALID_DATA = 0x80be000d; // 2159935501 +constexpr int ORBIS_SCREENSHOT_ERROR_MAIN_THREAD_CALL = 0x80be0104; // 2159935748 +constexpr int ORBIS_SCREENSHOT_ERROR_MEDIA_FULL = 0x80be0005; // 2159935493 +constexpr int ORBIS_SCREENSHOT_ERROR_MEDIA_NOT_EXIST = 0x80be000b; // 2159935499 +constexpr int ORBIS_SCREENSHOT_ERROR_NO_MEMORY = 0x80be0002; // 2159935490 +constexpr int ORBIS_SCREENSHOT_ERROR_NOT_SUPPORTED_DATA = 0x80be000e; // 2159935502 +constexpr int ORBIS_SCREENSHOT_ERROR_NOT_SUPPORTED_FORMAT = 0x80be0004; // 2159935492 +constexpr int ORBIS_SCREENSHOT_ERROR_NOT_SUPPORTED_PLATFORM = 0x80be0141; // 2159935809 +constexpr int ORBIS_SCREENSHOT_ERROR_SCREENSHOT_DISABLED = 0x80be0007; // 2159935495 +constexpr int ORBIS_SCREENSHOT_ERROR_SCREENSHOT_SAVE_INVALID_ARGUMENT = 0x80be0181; // 2159935873 +constexpr int ORBIS_SCREENSHOT_ERROR_SCREENSHOT_SAVE_MEMORY_ALLOCATE_FAILIURE = + 0x80be0180; // 2159935872 +constexpr int ORBIS_SCREENSHOT_ERROR_SERVER_BUSY = 0x80be0121; // 2159935777 +constexpr int ORBIS_SCREENSHOT_ERROR_SERVER_NO_MEMORY = 0x80be0123; // 2159935779 +constexpr int ORBIS_SCREENSHOT_ERROR_SERVER_NOT_EXIST = 0x80be0122; // 2159935778 +constexpr int ORBIS_SCREENSHOT_ERROR_SYS_ERROR_FATAL = 0x80be0191; // 2159935889 +constexpr int ORBIS_SCREENSHOT_ERROR_SYS_ERROR_LOCK_RESOURCE = 0x80be0196; // 2159935894 +constexpr int ORBIS_SCREENSHOT_ERROR_SYS_ERROR_MAP_ADDRESS = 0x80be0192; // 2159935890 +constexpr int ORBIS_SCREENSHOT_ERROR_SYS_ERROR_REMAP_TO_VMID0 = 0x80be0194; // 2159935892 +constexpr int ORBIS_SCREENSHOT_ERROR_SYS_ERROR_SDMA_COPY = 0x80be0195; // 2159935893 +constexpr int ORBIS_SCREENSHOT_ERROR_SYS_ERROR_UNKNOWN = 0x80be0190; // 2159935888 +constexpr int ORBIS_SCREENSHOT_ERROR_SYS_ERROR_UNMAP_ADDRESS = 0x80be0193; // 2159935891 +constexpr int ORBIS_SCREENSHOT_ERROR_SYS_FATAL_ERROR = 0x80be0131; // 2159935793 +constexpr int ORBIS_SCREENSHOT_ERROR_UNEXPECTED = 0x80be0105; // 2159935749 +constexpr int ORBIS_SCREENSHOT_ERROR_UNKNOWN_SYS_ERROR = 0x80be0106; // 2159935750 +constexpr int ORBIS_SCREENSHOT_SYS_ERROR_DISPLAY_BUFFER_NOT_IN_USE = 0x80c30301; // 2160263937 +constexpr int ORBIS_SCREENSHOT_SYS_ERROR_DISPLAY_BUFFER_ON_MUTE = 0x80c30303; // 2160263939 +constexpr int ORBIS_SCREENSHOT_SYS_ERROR_DISPLAY_BUFFER_RETRY_COUNT_MAX = 0x80c30302; // 2160263938 +constexpr int ORBIS_SCREENSHOT_SYS_ERROR_DISPLAY_BUFFER_TOO_BIG = 0x80c30304; // 2160263940 +constexpr int ORBIS_SCREENSHOT_SYS_ERROR_FATAL = 0x80c30002; // 2160263170 +constexpr int ORBIS_SCREENSHOT_SYS_ERROR_GOTO_PROCESS_SUSPEND = 0x80c30101; // 2160263425 +constexpr int ORBIS_SCREENSHOT_SYS_ERROR_LOCK_RESOURCE = 0x80c30501; // 2160264449 +constexpr int ORBIS_SCREENSHOT_SYS_ERROR_MAP_ADDRESS = 0x80c30201; // 2160263681 +constexpr int ORBIS_SCREENSHOT_SYS_ERROR_REMAP_TO_VMID0 = 0x80c30203; // 2160263683 +constexpr int ORBIS_SCREENSHOT_SYS_ERROR_SDMA_COPY = 0x80c30401; // 2160264193 +constexpr int ORBIS_SCREENSHOT_SYS_ERROR_UNKNOWN = 0x80c30001; // 2160263169 +constexpr int ORBIS_SCREENSHOT_SYS_ERROR_UNMAP_ADDRESS = 0x80c30202; // 2160263682 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_ABORT = 0x80eb0103; // 2162884867 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_CAPTURE_BUSY = 0x80eb0009; // 2162884617 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_CAPTURE_CANCELED = 0x80eb000a; // 2162884618 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_CAPTURE_FAILED = 0x80eb0008; // 2162884616 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_CONTENT_FULL = 0x80eb000c; // 2162884620 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_DISPLAY_BUFFER_NOT_IN_USE = 0x80eb0133; // 2162884915 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_DISPLAY_BUFFER_ON_MUTE = 0x80eb0135; // 2162884917 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_DISPLAY_BUFFER_RETRY_COUNT_MAX = 0x80eb0134; // 2162884916 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_FILE_NOT_FOUND = 0x80eb0003; // 2162884611 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_GOTO_PROCESS_SUSPEND = 0x80eb0132; // 2162884914 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_INTERNAL = 0x80eb0006; // 2162884614 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_INVALID_ARGUMENT = 0x80eb0001; // 2162884609 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_INVALID_DATA = 0x80eb000d; // 2162884621 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_MAIN_THREAD_CALL = 0x80eb0104; // 2162884868 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_MEDIA_FULL = 0x80eb0005; // 2162884613 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_MEDIA_NOT_EXIST = 0x80eb000b; // 2162884619 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_NO_MEMORY = 0x80eb0002; // 2162884610 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_NOT_SUPPORTED_DATA = 0x80eb000e; // 2162884622 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_NOT_SUPPORTED_FORMAT = 0x80eb0004; // 2162884612 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_NOT_SUPPORTED_PLATFORM = 0x80eb0141; // 2162884929 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_SCREENSHOT_DISABLED = 0x80eb0007; // 2162884615 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_SERVER_BUSY = 0x80eb0121; // 2162884897 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_SERVER_NO_MEMORY = 0x80eb0123; // 2162884899 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_SERVER_NOT_EXIST = 0x80eb0122; // 2162884898 +constexpr int ORBIS_SCREENSHOT_UTIL_ERROR_SYS_FATAL_ERROR = 0x80eb0131; // 2162884913 + +// SET_UPPER +constexpr int ORBIS_SET_UPPER_ERROR_CLOSE = 0x80182a63; // 2149067363 +constexpr int ORBIS_SET_UPPER_ERROR_CONNECT = 0x80182a04; // 2149067268 +constexpr int ORBIS_SET_UPPER_ERROR_ENOMEM = 0x80182a01; // 2149067265 +constexpr int ORBIS_SET_UPPER_ERROR_INVAL = 0x80182a31; // 2149067313 +constexpr int ORBIS_SET_UPPER_ERROR_KILL = 0x80182a02; // 2149067266 +constexpr int ORBIS_SET_UPPER_ERROR_MKDIR = 0x80182a66; // 2149067366 +constexpr int ORBIS_SET_UPPER_ERROR_NOT_FOUND = 0x80182a30; // 2149067312 +constexpr int ORBIS_SET_UPPER_ERROR_OPEN_READ = 0x80182a61; // 2149067361 +constexpr int ORBIS_SET_UPPER_ERROR_OPEN_WRITE = 0x80182a62; // 2149067362 +constexpr int ORBIS_SET_UPPER_ERROR_READ = 0x80182a64; // 2149067364 +constexpr int ORBIS_SET_UPPER_ERROR_SEND = 0x80182a06; // 2149067270 +constexpr int ORBIS_SET_UPPER_ERROR_SOCKET = 0x80182a03; // 2149067267 +constexpr int ORBIS_SET_UPPER_ERROR_SOCKET_CLOSE = 0x80182a05; // 2149067269 +constexpr int ORBIS_SET_UPPER_ERROR_STAT = 0x80182a60; // 2149067360 +constexpr int ORBIS_SET_UPPER_ERROR_WRITE = 0x80182a65; // 2149067365 + +// SETTINGS +constexpr int ORBIS_SETTINGS_ERROR_BT_AUTH_FAILED = 0x80ec0209; // 2162950665 +constexpr int ORBIS_SETTINGS_ERROR_BT_BD_REMOTE_NOT_SUPPORTED = 0x80ec020d; // 2162950669 +constexpr int ORBIS_SETTINGS_ERROR_BT_CONNECTION_FAILED = 0x80ec020a; // 2162950666 +constexpr int ORBIS_SETTINGS_ERROR_BT_CONNECTION_MAX = 0x80ec020b; // 2162950667 +constexpr int ORBIS_SETTINGS_ERROR_BT_CONNECTION_TIMEOUT = 0x80ec0208; // 2162950664 +constexpr int ORBIS_SETTINGS_ERROR_BT_DEVICE_OPEN_FAILED = 0x80ec0200; // 2162950656 +constexpr int ORBIS_SETTINGS_ERROR_BT_EVENT_CANNOT_READ = 0x80ec0205; // 2162950661 +constexpr int ORBIS_SETTINGS_ERROR_BT_EVENT_CANNOT_REGIST = 0x80ec0203; // 2162950659 +constexpr int ORBIS_SETTINGS_ERROR_BT_EVENT_WAIT_FAILED = 0x80ec0204; // 2162950660 +constexpr int ORBIS_SETTINGS_ERROR_BT_GET_EVENT_QUEUE_FAILED = 0x80ec0202; // 2162950658 +constexpr int ORBIS_SETTINGS_ERROR_BT_NO_PROFILE = 0x80ec0207; // 2162950663 +constexpr int ORBIS_SETTINGS_ERROR_BT_REGIST_FULL = 0x80ec020c; // 2162950668 +constexpr int ORBIS_SETTINGS_ERROR_BT_STATE_INVALID = 0x80ec0206; // 2162950662 +constexpr int ORBIS_SETTINGS_ERROR_BT_WRITE_FAILED = 0x80ec0201; // 2162950657 +constexpr int ORBIS_SETTINGS_ERROR_PSN_CAM_JSON_PARSE = 0x80ec0102; // 2162950402 +constexpr int ORBIS_SETTINGS_ERROR_PSN_CAM_WEB_APP_FATAL = 0x80ec0101; // 2162950401 +constexpr int ORBIS_SETTINGS_ERROR_PSN_CERTIFICATE_VERIFICATION = 0x80ec0100; // 2162950400 +constexpr int ORBIS_SETTINGS_NETWORK_ERROR_CONN_TEST_AP_DISCONNECTED = 0x80ec0027; // 2162950183 +constexpr int ORBIS_SETTINGS_NETWORK_ERROR_CONN_TEST_BANDWIDTH_TIMEOUT = 0x80ec0026; // 2162950182 +constexpr int ORBIS_SETTINGS_NETWORK_ERROR_CONN_TEST_CONNECTING_TIMEOUT = 0x80ec0020; // 2162950176 +constexpr int ORBIS_SETTINGS_NETWORK_ERROR_CONN_TEST_HTTP_GET_STATUS_NOT_200 = + 0x80ec0028; // 2162950184 +constexpr int ORBIS_SETTINGS_NETWORK_ERROR_CONN_TEST_INET_CONN_TIMEOUT = 0x80ec0023; // 2162950179 +constexpr int ORBIS_SETTINGS_NETWORK_ERROR_CONN_TEST_IPOBTAINING_TIMEOUT = 0x80ec0021; // 2162950177 +constexpr int ORBIS_SETTINGS_NETWORK_ERROR_CONN_TEST_IPOBTAINING_TIMEOUT_WITH_WEP = + 0x80ec0022; // 2162950178 +constexpr int ORBIS_SETTINGS_NETWORK_ERROR_CONN_TEST_NATTYPE_TIMEOUT = 0x80ec0025; // 2162950181 +constexpr int ORBIS_SETTINGS_NETWORK_ERROR_CONN_TEST_NETWORK_DISABLED = 0x80ec002a; // 2162950186 +constexpr int ORBIS_SETTINGS_NETWORK_ERROR_CONN_TEST_PSN_SIGNED_OUT = 0x80ec0029; // 2162950185 +constexpr int ORBIS_SETTINGS_NETWORK_ERROR_CONN_TEST_SIGNIN_TIMEOUT = 0x80ec0024; // 2162950180 +constexpr int ORBIS_SETTINGS_NETWORK_ERROR_EASY_PPPOE_TIMEOUT = 0x80ec0000; // 2162950144 + +// SHARE +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_ABSTRACT_STORAGE_CLOSE = 0x81050a08; // 2164591112 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_ABSTRACT_STORAGE_GETITEM = 0x81050a04; // 2164591108 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_ABSTRACT_STORAGE_GETSTORAGE = 0x81050a03; // 2164591107 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_ABSTRACT_STORAGE_LOAD_SERVICE_TYPE_TWITTER = + 0x81050a01; // 2164591105 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_ABSTRACT_STORAGE_NEWCONTENT = 0x81050a05; // 2164591109 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_ABSTRACT_STORAGE_OPEN = 0x81050a07; // 2164591111 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_ABSTRACT_STORAGE_SETMETADATA = 0x81050a06; // 2164591110 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_ABSTRACT_STORAGE_UNLOAD_SERVICE_TYPE_TWITTER = + 0x81050a02; // 2164591106 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_BGFT_GET_TASK_USER_ID = 0x81050501; // 2164589825 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_BGFT_GET_UPLOADED_ID = 0x81050502; // 2164589826 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_BGFT_UPLOAD_GET_PROGRESS = 0x81050503; // 2164589827 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_CANCEL = 0x81050001; // 2164588545 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_FILE_BGFT_JSON_META_CLOSE = 0x81050202; // 2164589058 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_FILE_BGFT_JSON_META_FSTAT = 0x81050203; // 2164589059 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_FILE_BGFT_JSON_META_MALLOC = 0x81050205; // 2164589061 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_FILE_BGFT_JSON_META_OPEN = 0x81050201; // 2164589057 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_FILE_BGFT_JSON_META_READ = 0x81050204; // 2164589060 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_HTTP_STATUS_ERROR = 0x81050102; // 2164588802 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_INVALID_ARGUMENT = 0x81050002; // 2164588546 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_JSON_BGFT_JSON_META_PARSE = 0x81050301; // 2164589313 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_JSON_CONTENTSINFO_META_PARSE = 0x81050302; // 2164589314 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_HTTP_ABORT_REQUEST = 0x8105080e; // 2164590606 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_HTTP_ADD_REQUEST_HEADER = 0x81050806; // 2164590598 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_HTTP_CREATE_CONNECTION_WITH_URL = + 0x81050804; // 2164590596 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_HTTP_CREATE_REQUEST_WITH_URL = + 0x81050805; // 2164590597 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_HTTP_CREATE_TEMPLATE = 0x81050803; // 2164590595 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_HTTP_DELETE_CONNECTION = 0x8105080c; // 2164590604 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_HTTP_DELETE_REQUEST = 0x8105080b; // 2164590603 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_HTTP_DELETE_TEMPLATE = 0x8105080d; // 2164590605 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_HTTP_GET_RESPONSE_CONTENT_LENGTH = + 0x81050809; // 2164590601 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_HTTP_GET_STATUS_CODE = 0x81050808; // 2164590600 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_HTTP_INIT = 0x81050801; // 2164590593 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_HTTP_READ_DATA = 0x8105080a; // 2164590602 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_HTTP_SEND_REQUEST = 0x81050807; // 2164590599 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_HTTP_TERM = 0x81050802; // 2164590594 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_KERNEL_CREATE_EVENT_FLAG = 0x8105040c; // 2164589580 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_KERNEL_PTHREAD_ATTR_DESTROY = 0x8105040a; // 2164589578 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_KERNEL_PTHREAD_ATTR_INIT = 0x81050409; // 2164589577 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_KERNEL_PTHREAD_COND_ATTR_INIT = + 0x81050405; // 2164589573 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_KERNEL_PTHREAD_COND_DESTROY = 0x81050407; // 2164589575 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_KERNEL_PTHREAD_COND_INIT = 0x81050404; // 2164589572 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_KERNEL_PTHREAD_COND_SIGNAL = 0x81050406; // 2164589574 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_KERNEL_PTHREAD_CREATE = 0x81050408; // 2164589576 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_KERNEL_PTHREAD_JOIN = 0x8105040b; // 2164589579 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_KERNEL_PTHREAD_MUTEX_ATTR_INIT = + 0x81050403; // 2164589571 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_KERNEL_PTHREAD_MUTEX_DESTROY = + 0x81050402; // 2164589570 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_KERNEL_PTHREAD_MUTEX_INIT = 0x81050401; // 2164589569 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NET_INIT = 0x81050601; // 2164590081 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NET_POOL_CREATE = 0x81050603; // 2164590083 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NET_POOL_DESTROY = 0x81050604; // 2164590084 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NET_TERM = 0x81050602; // 2164590082 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_MANAGER_INT_ABORT_REQUEST = + 0x81050919; // 2164590873 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_MANAGER_INT_CREATE_REQUEST = + 0x81050916; // 2164590870 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_MANAGER_INT_DELETE_REQUEST = + 0x81050917; // 2164590871 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_MANAGER_INT_GET_VSH_TOKEN = + 0x81050918; // 2164590872 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_MANAGER_VSH_GET_ONLINE_ID = + 0x81050902; // 2164590850 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_SET_NP_TITLEID = 0x81050901; // 2164590849 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_SNS_INT_ABORT_REQUEST = 0x81050912; // 2164590866 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_SNS_INT_CREATE_REQUEST = 0x8105090f; // 2164590863 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_SNS_INT_DELETE_REQUEST = 0x81050911; // 2164590865 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_SNS_INT_FB_GET_SYSTEM_ACCESS_TOKEN = + 0x8105091a; // 2164590874 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_SNS_INT_POST_OPEN_GRAPH = 0x81050910; // 2164590864 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_SNS_INT_TW_GET_SYSTEM_ACCESS_TOKEN = + 0x81050913; // 2164590867 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_SNS_LOAD_INTERNAL_NP_MANAGER = + 0x81050914; // 2164590868 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_SNS_LOAD_INTERNAL_NP_SNS = 0x8105090d; // 2164590861 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_SNS_UNLOAD_INTERNAL_NP_MANAGER = + 0x81050915; // 2164590869 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_SNS_UNLOAD_INTERNAL_NP_SNS = + 0x8105090e; // 2164590862 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_WEB_API_ABORT_REQUEST = 0x8105090a; // 2164590858 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_WEB_API_CREATE_CONTEXT = 0x81050907; // 2164590855 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_WEB_API_CREATE_REQUEST = 0x81050905; // 2164590853 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_WEB_API_DELETE_CONTEXT = 0x81050908; // 2164590856 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_WEB_API_DELETE_REQUEST = 0x81050906; // 2164590854 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_WEB_API_GET_HTTP_STATUS_CODE = + 0x8105090b; // 2164590859 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_WEB_API_READ_DATA = 0x8105090c; // 2164590860 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_WEB_API_SEND_REQUEST = 0x81050909; // 2164590857 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_WEB_API_TERMINATE = 0x81050904; // 2164590852 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_NP_WEB_API_VSH_INITIALIZE = 0x81050903; // 2164590851 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_SSL_INIT = 0x81050701; // 2164590337 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_LIB_SSL_TERM = 0x81050702; // 2164590338 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_NOT_EXIST_DATA = 0x81050006; // 2164588550 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_NOT_INITILIZED = 0x81050005; // 2164588549 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_OUT_OF_MEMORY = 0x81050004; // 2164588548 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_QUEUEING = 0x81050103; // 2164588803 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_REG_GET_LANG = 0x81050d02; // 2164591874 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_REG_GET_NP_ENV = 0x81050d01; // 2164591873 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_SEQUENCE = 0x81050003; // 2164588547 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_SYSTEM_LOGGER_STORAGE_SET_DATA_ASYNC = + 0x81050c01; // 2164591617 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_UNSUPPORTED_CONTENT_TYPE = 0x81050101; // 2164588801 +constexpr int ORBIS_SHARE_ACTIVITY_ERROR_USER_SERVICE_GET_NP_ACCOUNT_ID = 0x81050b01; // 2164591361 +constexpr int ORBIS_SHARE_BUTTON_ERROR_IMAGING_OPERATION_FAILED = 0x81010103; // 2164326659 +constexpr int ORBIS_SHARE_BUTTON_ERROR_INVALID_ARGUMENT = 0x81010101; // 2164326657 +constexpr int ORBIS_SHARE_BUTTON_ERROR_IO_OPERATION_FAILED = 0x81010102; // 2164326658 +constexpr int ORBIS_SHARE_BUTTON_ERROR_NOT_ENOUGH_SPACE = 0x81010201; // 2164326913 +constexpr int ORBIS_SHARE_BUTTON_ERROR_NOT_ENOUGH_SPACE_FOR_SCREENSHOT = 0x81010204; // 2164326916 +constexpr int ORBIS_SHARE_BUTTON_ERROR_NOT_SIGNED_IN = 0x81010202; // 2164326914 +constexpr int ORBIS_SHARE_BUTTON_ERROR_UNAVAILABLE_SERVICE = 0x81010203; // 2164326915 +constexpr int ORBIS_SHARE_UTILITY_ERROR_ALREADY_INITILIZED = 0x81170101; // 2165768449 +constexpr int ORBIS_SHARE_UTILITY_ERROR_BUSY = 0x8117000c; // 2165768204 +constexpr int ORBIS_SHARE_UTILITY_ERROR_CREATE_RESOURCE = 0x81170005; // 2165768197 +constexpr int ORBIS_SHARE_UTILITY_ERROR_DESTROY_RESOURCE = 0x81170006; // 2165768198 +constexpr int ORBIS_SHARE_UTILITY_ERROR_END_RESOURCE = 0x81170009; // 2165768201 +constexpr int ORBIS_SHARE_UTILITY_ERROR_EXECUTE_FUNCTION = 0x8117000b; // 2165768203 +constexpr int ORBIS_SHARE_UTILITY_ERROR_GET_APP_INFORMATION = 0x81170104; // 2165768452 +constexpr int ORBIS_SHARE_UTILITY_ERROR_INITIALIZE_RESOURCE = 0x81170007; // 2165768199 +constexpr int ORBIS_SHARE_UTILITY_ERROR_INVALID_ARGUMENT = 0x81170003; // 2165768195 +constexpr int ORBIS_SHARE_UTILITY_ERROR_LARGE_SIZE = 0x81170004; // 2165768196 +constexpr int ORBIS_SHARE_UTILITY_ERROR_NOMEM = 0x81170002; // 2165768194 +constexpr int ORBIS_SHARE_UTILITY_ERROR_NOT_FLAG_IN_PARAM_SFO = 0x81170105; // 2165768453 +constexpr int ORBIS_SHARE_UTILITY_ERROR_NOT_INITILIZED = 0x81170102; // 2165768450 +constexpr int ORBIS_SHARE_UTILITY_ERROR_NOT_OPEN = 0x81170201; // 2165768705 +constexpr int ORBIS_SHARE_UTILITY_ERROR_NOT_OPEN_INVALID_FUNCTION_FLAG = 0x81170202; // 2165768706 +constexpr int ORBIS_SHARE_UTILITY_ERROR_PARSE_JSON = 0x8117000d; // 2165768205 +constexpr int ORBIS_SHARE_UTILITY_ERROR_RESOURCE = 0x8117000a; // 2165768202 +constexpr int ORBIS_SHARE_UTILITY_ERROR_START_RESOURCE = 0x81170008; // 2165768200 +constexpr int ORBIS_SHARE_UTILITY_ERROR_TOO_MANY_APPLICATION = 0x81170103; // 2165768451 +constexpr int ORBIS_SHARE_UTILITY_ERROR_UNKNOWN = 0x81170001; // 2165768193 + +// SHELL +constexpr int ORBIS_SHELL_CORE_UTIL_ERROR_INTERNAL = 0x80e30001; // 2162360321 +constexpr int ORBIS_SHELL_CORE_UTIL_ERROR_INVALID_ARG = 0x80e30005; // 2162360325 +constexpr int ORBIS_SHELL_CORE_UTIL_ERROR_INVALID_URI_LEN = 0x80e30006; // 2162360326 +constexpr int ORBIS_SHELL_CORE_UTIL_ERROR_INVALID_VALUE_LEN = 0x80e30007; // 2162360327 +constexpr int ORBIS_SHELL_CORE_UTIL_ERROR_NO_MEMORY = 0x80e30004; // 2162360324 +constexpr int ORBIS_SHELL_CORE_UTIL_ERROR_NULL_POINTER = 0x80e30003; // 2162360323 +constexpr int ORBIS_SHELL_CORE_UTIL_ERROR_OUTSIDE_POWER_LOCK_SECTION = 0x80e30008; // 2162360328 +constexpr int ORBIS_SHELL_CORE_UTIL_ERROR_UNAVAILABLE = 0x80e30002; // 2162360322 +constexpr int ORBIS_SHELL_UTIL_ERROR_ALREADY_UNLOCKED = 0x80ba0005; // 2159673349 +constexpr int ORBIS_SHELL_UTIL_ERROR_APPLICATION_CRASH = 0x80ba000c; // 2159673356 +constexpr int ORBIS_SHELL_UTIL_ERROR_DISC_CORRUPTED = 0x80ba0009; // 2159673353 +constexpr int ORBIS_SHELL_UTIL_ERROR_DISC_UNRECOGNIZED = 0x80ba000f; // 2159673359 +constexpr int ORBIS_SHELL_UTIL_ERROR_DISC_UNSUPPORTED = 0x80ba000a; // 2159673354 +constexpr int ORBIS_SHELL_UTIL_ERROR_DISC_UNSUPPORTED_PS3 = 0x80ba000b; // 2159673355 +constexpr int ORBIS_SHELL_UTIL_ERROR_ERROR_DIALOG_SUPPORT_ACTION_USER_NOT_FOUND = + 0x80ba0012; // 2159673362 +constexpr int ORBIS_SHELL_UTIL_ERROR_EVENT_MAX = 0x80ba0003; // 2159673347 +constexpr int ORBIS_SHELL_UTIL_ERROR_NEED_SYSTEM_UPDATE = 0x80ba000e; // 2159673358 +constexpr int ORBIS_SHELL_UTIL_ERROR_NO_APPLICATION = 0x80ba0010; // 2159673360 +constexpr int ORBIS_SHELL_UTIL_ERROR_NOT_INITIALIZED = 0x80ba0001; // 2159673345 +constexpr int ORBIS_SHELL_UTIL_ERROR_NOT_SIGNED_IN = 0x80ba0008; // 2159673352 +constexpr int ORBIS_SHELL_UTIL_ERROR_NOT_SIGNED_UP = 0x80ba0006; // 2159673350 +constexpr int ORBIS_SHELL_UTIL_ERROR_NOT_TERMINATED = 0x80ba0002; // 2159673346 +constexpr int ORBIS_SHELL_UTIL_ERROR_OUT_OF_MEMORY = 0x80ba0004; // 2159673348 +constexpr int ORBIS_SHELL_UTIL_ERROR_SIGNED_OUT = 0x80ba0007; // 2159673351 +constexpr int ORBIS_SHELL_UTIL_ERROR_SOMETHING_CRASH = 0x80ba0014; // 2159673364 +constexpr int ORBIS_SHELL_UTIL_ERROR_SYSTEM_CRASH = 0x80ba0013; // 2159673363 +constexpr int ORBIS_SHELL_UTIL_ERROR_SYSTEM_MESSAGE_HISTORY = 0x80ba000d; // 2159673357 +constexpr int ORBIS_SHELL_UTIL_ERROR_UNSUPPORTED_TV_DETECTED_WHILE_RUNNING = + 0x80ba0011; // 2159673361 + +// SIGNUP +constexpr int ORBIS_SIGNUP_UTILITY_ERROR_ALREADY_INITIALIZED = 0x80b70002; // 2159476738 +constexpr int ORBIS_SIGNUP_UTILITY_ERROR_INTERNAL = 0x80b70009; // 2159476745 +constexpr int ORBIS_SIGNUP_UTILITY_ERROR_INVALID_ARGUMENT = 0x80b70003; // 2159476739 +constexpr int ORBIS_SIGNUP_UTILITY_ERROR_NO_MEMORY = 0x80b70004; // 2159476740 +constexpr int ORBIS_SIGNUP_UTILITY_ERROR_NO_SUCH_USER = 0x80b70005; // 2159476741 +constexpr int ORBIS_SIGNUP_UTILITY_ERROR_NOT_INITIALIZED = 0x80b70001; // 2159476737 +constexpr int ORBIS_SIGNUP_UTILITY_ERROR_SIGNUP_BUSY = 0x80b70007; // 2159476743 +constexpr int ORBIS_SIGNUP_UTILITY_ERROR_USER_ALLREADY_SIGNED_IN = 0x80b70006; // 2159476742 +constexpr int ORBIS_SIGNUP_UTILITY_ERROR_USER_CANCELED = 0x80b70008; // 2159476744 + +// SSL +constexpr int ORBIS_SSL_ERROR_ALREADY_INITED = 0x8095f002; // 2157309954 +constexpr int ORBIS_SSL_ERROR_BAD_CERT_LENGTH = 0x809520d2; // 2157256914 +constexpr int ORBIS_SSL_ERROR_BAD_SIGN_ALGO = 0x809520d1; // 2157256913 +constexpr int ORBIS_SSL_ERROR_BEFORE_INIT = 0x8095f001; // 2157309953 +constexpr int ORBIS_SSL_ERROR_BROKEN = 0x8095f003; // 2157309955 +constexpr int ORBIS_SSL_ERROR_CN_CHECK = 0x8095f00b; // 2157309963 +constexpr int ORBIS_SSL_ERROR_EAGAIN = 0x8095f00f; // 2157309967 +constexpr int ORBIS_SSL_ERROR_FATAL_ALERT = 0x8095f010; // 2157309968 +constexpr int ORBIS_SSL_ERROR_INTERNAL = 0x8095f009; // 2157309961 +constexpr int ORBIS_SSL_ERROR_INVALID_CERT = 0x8095f00a; // 2157309962 +constexpr int ORBIS_SSL_ERROR_INVALID_FORMAT = 0x8095f005; // 2157309957 +constexpr int ORBIS_SSL_ERROR_INVALID_ID = 0x8095f006; // 2157309958 +constexpr int ORBIS_SSL_ERROR_INVALID_VALUE = 0x8095f007; // 2157309959 +constexpr int ORBIS_SSL_ERROR_KEY_BLOB_CORRUPT = 0x809520d4; // 2157256916 +constexpr int ORBIS_SSL_ERROR_MISMATCH_PUBLIC_KEYS = 0x809520d3; // 2157256915 +constexpr int ORBIS_SSL_ERROR_NOT_AFTER_CHECK = 0x8095f00d; // 2157309965 +constexpr int ORBIS_SSL_ERROR_NOT_BEFORE_CHECK = 0x8095f00e; // 2157309966 +constexpr int ORBIS_SSL_ERROR_NOT_FOUND = 0x8095f004; // 2157309956 +constexpr int ORBIS_SSL_ERROR_OUT_OF_MEMORY = 0x809517d5; // 2157254613 +constexpr int ORBIS_SSL_ERROR_OUT_OF_SIZE = 0x8095f008; // 2157309960 +constexpr int ORBIS_SSL_ERROR_PROHIBITED = 0x8095f011; // 2157309969 +constexpr int ORBIS_SSL_ERROR_READ_TIMEOUT = 0x80951710; // 2157254416 +constexpr int ORBIS_SSL_ERROR_SOCKET_CLOSED = 0x8095170d; // 2157254413 +constexpr int ORBIS_SSL_ERROR_UNKNOWN_CA = 0x8095f00c; // 2157309964 + +// SYSFILE +constexpr int ORBIS_SYSFILE_ERROR_BADMAGIC = 0x80120004; // 2148663300 +constexpr int ORBIS_SYSFILE_ERROR_BADVERSION = 0x80120007; // 2148663303 +constexpr int ORBIS_SYSFILE_ERROR_INVAL = 0x80120003; // 2148663299 +constexpr int ORBIS_SYSFILE_ERROR_IO = 0x80120002; // 2148663298 +constexpr int ORBIS_SYSFILE_ERROR_KEYDUPLICATION = 0x80120006; // 2148663302 +constexpr int ORBIS_SYSFILE_ERROR_KEYNOTFOUND = 0x80120005; // 2148663301 +constexpr int ORBIS_SYSFILE_ERROR_NOMEM = 0x80120001; // 2148663297 +constexpr int ORBIS_SYSFILE_ERROR_OVER_DATABUFSIZE = 0x80120008; // 2148663304 +constexpr int ORBIS_SYSFILE_UTIL_ERROR_DISKSPACE_NOT_ENOUGH = 0x80bd0003; // 2159869955 +constexpr int ORBIS_SYSFILE_UTIL_ERROR_FILE_NOT_FOUND = 0x80bd0004; // 2159869956 +constexpr int ORBIS_SYSFILE_UTIL_ERROR_INVALID_FILEPATH = 0x80bd0008; // 2159869960 +constexpr int ORBIS_SYSFILE_UTIL_ERROR_INVALID_PARAMETERS = 0x80bd0007; // 2159869959 +constexpr int ORBIS_SYSFILE_UTIL_ERROR_KEY_NOT_FOUND = 0x80bd0005; // 2159869957 +constexpr int ORBIS_SYSFILE_UTIL_ERROR_MEMORY_NOT_ENOUGH = 0x80bd0002; // 2159869954 +constexpr int ORBIS_SYSFILE_UTIL_ERROR_SFO_FILE_BROKEN = 0x80bd0006; // 2159869958 +constexpr int ORBIS_SYSFILE_UTIL_ERROR_UNKNOWN = 0x80bd0001; // 2159869953 + +// SYSTEM +constexpr int ORBIS_SYSTEM_LOGGER_ERROR_BUSY = 0x81080004; // 2164785156 +constexpr int ORBIS_SYSTEM_LOGGER_ERROR_CAM_OPEN_ERROR = 0x81080080; // 2164785280 +constexpr int ORBIS_SYSTEM_LOGGER_ERROR_CAM_READ_BUFFER_ERROR = 0x81080082; // 2164785282 +constexpr int ORBIS_SYSTEM_LOGGER_ERROR_CAM_READ_BUFFER_SIZE_ERROR = 0x81080081; // 2164785281 +constexpr int ORBIS_SYSTEM_LOGGER_ERROR_GENERIC = 0x81080001; // 2164785153 +constexpr int ORBIS_SYSTEM_LOGGER_ERROR_INVALID_ARGUMENT = 0x81080002; // 2164785154 +constexpr int ORBIS_SYSTEM_LOGGER_ERROR_LOG_PARAMETER_OUT_OF_RANGE = 0x81080005; // 2164785157 +constexpr int ORBIS_SYSTEM_LOGGER_ERROR_NO_MEMORY = 0x81080003; // 2164785155 +constexpr int ORBIS_SYSTEM_LOGGER_ERROR_NOT_FOUND = 0x81080006; // 2164785158 +constexpr int ORBIS_SYSTEM_LOGGER_STORAGE_ERROR_INVALID_ARGUMENT = 0x80dd0001; // 2161967105 +constexpr int ORBIS_SYSTEM_LOGGER_STORAGE_ERROR_NO_MEMORY = 0x80dd0002; // 2161967106 +constexpr int ORBIS_SYSTEM_STATE_MGR_ERROR_INTERNAL = 0x81130001; // 2165506049 +constexpr int ORBIS_SYSTEM_STATE_MGR_ERROR_INVALID_VALUE = 0x81130003; // 2165506051 +constexpr int ORBIS_SYSTEM_STATE_MGR_ERROR_NOT_PERMITTED = 0x81130002; // 2165506050 + +// UPDATE +constexpr int ORBIS_UPDATE_APP_FRAMEWORK_ERROR_ENOMEM = 0x80182b03; // 2149067523 +constexpr int ORBIS_UPDATE_APP_FRAMEWORK_ERROR_PAD_INIT = 0x80182b01; // 2149067521 +constexpr int ORBIS_UPDATE_APP_FRAMEWORK_ERROR_TILE_MODE = 0x80182b02; // 2149067522 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_BAD_STATE = 0x80182211; // 2149065233 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_CACHE_EXPIRED = 0x80182248; // 2149065288 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_CANCELED = 0x8018224a; // 2149065290 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_CDN_INVAL_PSCODE = 0x80182245; // 2149065285 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_CONTENTLEN_CHUNK_ENC = 0x80182262; // 2149065314 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_CONTENTLEN_NOT_FOUND = 0x80182263; // 2149065315 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_CRITICAL = 0x80182210; // 2149065232 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_DL_HTTP_STATUS_CODE = 0x80182260; // 2149065312 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_DL_INVAL_STATUS = 0x80182261; // 2149065313 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_ERRNO_ENOMEM = 0x80182241; // 2149065281 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_FATAL = 0x80182246; // 2149065286 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_INVAL_ARG = 0x80182242; // 2149065282 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_INVAL_IMAGE_ATT = 0x8018220b; // 2149065227 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_INVAL_PREINST_PUP_ATT = 0x8018220a; // 2149065226 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_INVAL_PRODUCT_REQ_ATT = 0x80182205; // 2149065221 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_INVAL_RECOVERY_PUP_ATT = 0x80182209; // 2149065225 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_INVAL_REGION_ATT = 0x80182202; // 2149065218 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_INVAL_SYSTEM_ATT = 0x80182203; // 2149065219 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_INVAL_SYSTEM_EX_ATT = 0x80182204; // 2149065220 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_INVAL_SYSTEM_EX_PUP_ATT = 0x80182208; // 2149065224 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_INVAL_SYSTEM_PUP_ATT = 0x80182207; // 2149065223 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_INVAL_TYPE = 0x80182200; // 2149065216 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_INVAL_UPDATE_DATA_ATT = 0x80182206; // 2149065222 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_INVAL_URL_SIZE = 0x80182201; // 2149065217 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_NO_CACHE = 0x80182247; // 2149065287 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_NO_SIGNUP_USER = 0x80182244; // 2149065284 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_NOT_FOUND_DATA = 0x80182213; // 2149065235 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_NOTFOUND_REGION = 0x8018220d; // 2149065229 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_NOTFOUND_REGION_CHILD = 0x8018220e; // 2149065230 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_NOTFOUND_ROOT = 0x8018220c; // 2149065228 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_NOTFOUND_ROOT_NO_REDIRECT = 0x80182214; // 2149065236 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_NOTFOUND_UPDATE_DATA = 0x8018220f; // 2149065231 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_PARSER_INITIALIZE = 0x80182240; // 2149065280 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_QUEUE_FULL = 0x80182249; // 2149065289 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_SERVER_MAINTENANCE = 0x80182264; // 2149065316 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_SYS_CTL_BY_NAME = 0x80182212; // 2149065234 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_UNKNOWN_TITLE_ID = 0x80182265; // 2149065317 +constexpr int ORBIS_UPDATE_CHECKER_ERROR_URL = 0x80182243; // 2149065283 +constexpr int ORBIS_UPDATE_EULA_ERROR_BAD_STATE = 0x80182c10; // 2149067792 +constexpr int ORBIS_UPDATE_EULA_ERROR_CRITICAL = 0x80182c14; // 2149067796 +constexpr int ORBIS_UPDATE_EULA_ERROR_ERRNO_ENOMEM = 0x80182c02; // 2149067778 +constexpr int ORBIS_UPDATE_EULA_ERROR_INVAL_EULA_VERSION_ATT = 0x80182c12; // 2149067794 +constexpr int ORBIS_UPDATE_EULA_ERROR_INVAL_EULA_VERSION_VALUE = 0x80182c15; // 2149067797 +constexpr int ORBIS_UPDATE_EULA_ERROR_INVAL_LANG_ATT = 0x80182c13; // 2149067795 +constexpr int ORBIS_UPDATE_EULA_ERROR_NOTFOUND_ROOT = 0x80182c11; // 2149067793 +constexpr int ORBIS_UPDATE_EULA_ERROR_PARSER_INITIALIZE = 0x80182c01; // 2149067777 + +// UPDATER +constexpr int ORBIS_UPDATER_CORE_ERROR_BAD_STATE = 0x80180006; // 2149056518 +constexpr int ORBIS_UPDATER_CORE_ERROR_BD_FW_GENERAL = 0x801809a0; // 2149058976 +constexpr int ORBIS_UPDATER_CORE_ERROR_BD_FW_INVALID = 0x801809a5; // 2149058981 +constexpr int ORBIS_UPDATER_CORE_ERROR_BD_FW_NOMEM = 0x801809a1; // 2149058977 +constexpr int ORBIS_UPDATER_CORE_ERROR_BD_FW_OPEN = 0x801809a2; // 2149058978 +constexpr int ORBIS_UPDATER_CORE_ERROR_BD_FW_REQ_INCOMPLETE = 0x801809a7; // 2149058983 +constexpr int ORBIS_UPDATER_CORE_ERROR_BD_FW_SEND = 0x801809a3; // 2149058979 +constexpr int ORBIS_UPDATER_CORE_ERROR_BD_FW_SK_INVALID_COMMAND = 0x801809c1; // 2149059009 +constexpr int ORBIS_UPDATER_CORE_ERROR_BD_FW_SK_INVALID_PARAM = 0x801809c2; // 2149059010 +constexpr int ORBIS_UPDATER_CORE_ERROR_BD_FW_SK_INVALID_VERSION = 0x801809c3; // 2149059011 +constexpr int ORBIS_UPDATER_CORE_ERROR_BD_FW_SK_NOT_READY = 0x801809c5; // 2149059013 +constexpr int ORBIS_UPDATER_CORE_ERROR_BD_FW_SK_SEQ_ERROR = 0x801809c0; // 2149059008 +constexpr int ORBIS_UPDATER_CORE_ERROR_BD_FW_SK_UNIT_FAILURE = 0x801809c4; // 2149059012 +constexpr int ORBIS_UPDATER_CORE_ERROR_BD_FW_TIMEOUT = 0x801809a6; // 2149058982 +constexpr int ORBIS_UPDATER_CORE_ERROR_BD_FW_WRONG_FORMAT = 0x801809a4; // 2149058980 +constexpr int ORBIS_UPDATER_CORE_ERROR_BDEV_IO = 0x80180011; // 2149056529 +constexpr int ORBIS_UPDATER_CORE_ERROR_BDEV_OPEN = 0x8018000f; // 2149056527 +constexpr int ORBIS_UPDATER_CORE_ERROR_CANCELLED = 0x8018000d; // 2149056525 +constexpr int ORBIS_UPDATER_CORE_ERROR_FATAL = 0x80180fff; // 2149060607 +constexpr int ORBIS_UPDATER_CORE_ERROR_FILE_OPEN = 0x80180010; // 2149056528 +constexpr int ORBIS_UPDATER_CORE_ERROR_GENERAL = 0x80180000; // 2149056512 +constexpr int ORBIS_UPDATER_CORE_ERROR_HDD_PART = 0x80180008; // 2149056520 +constexpr int ORBIS_UPDATER_CORE_ERROR_INVAL = 0x80180001; // 2149056513 +constexpr int ORBIS_UPDATER_CORE_ERROR_INVAL_IO = 0x80180012; // 2149056530 +constexpr int ORBIS_UPDATER_CORE_ERROR_IO = 0x80180005; // 2149056517 +constexpr int ORBIS_UPDATER_CORE_ERROR_NOENT = 0x80180007; // 2149056519 +constexpr int ORBIS_UPDATER_CORE_ERROR_NOMEM = 0x80180002; // 2149056514 +constexpr int ORBIS_UPDATER_CORE_ERROR_NOT_FOUND = 0x80180004; // 2149056516 +constexpr int ORBIS_UPDATER_CORE_ERROR_PUP_US_ALREADY = 0x80180861; // 2149058657 +constexpr int ORBIS_UPDATER_CORE_ERROR_PUP_US_AUTH = 0x80180859; // 2149058649 +constexpr int ORBIS_UPDATER_CORE_ERROR_PUP_US_BADF = 0x80180856; // 2149058646 +constexpr int ORBIS_UPDATER_CORE_ERROR_PUP_US_BADMSG = 0x8018085a; // 2149058650 +constexpr int ORBIS_UPDATER_CORE_ERROR_PUP_US_BUSY = 0x80180852; // 2149058642 +constexpr int ORBIS_UPDATER_CORE_ERROR_PUP_US_FAULT = 0x80180857; // 2149058647 +constexpr int ORBIS_UPDATER_CORE_ERROR_PUP_US_FTYPE = 0x80180858; // 2149058648 +constexpr int ORBIS_UPDATER_CORE_ERROR_PUP_US_GENERAL = 0x80180850; // 2149058640 +constexpr int ORBIS_UPDATER_CORE_ERROR_PUP_US_INVAL = 0x80180853; // 2149058643 +constexpr int ORBIS_UPDATER_CORE_ERROR_PUP_US_IO = 0x80180855; // 2149058645 +constexpr int ORBIS_UPDATER_CORE_ERROR_PUP_US_NEEDAUTH = 0x8018085f; // 2149058655 +constexpr int ORBIS_UPDATER_CORE_ERROR_PUP_US_NOATTR = 0x8018085c; // 2149058652 +constexpr int ORBIS_UPDATER_CORE_ERROR_PUP_US_NOENT = 0x80180860; // 2149058656 +constexpr int ORBIS_UPDATER_CORE_ERROR_PUP_US_NOMEM = 0x80180854; // 2149058644 +constexpr int ORBIS_UPDATER_CORE_ERROR_PUP_US_PERM = 0x80180851; // 2149058641 +constexpr int ORBIS_UPDATER_CORE_ERROR_PUP_US_PLATFORM = 0x8018085e; // 2149058654 +constexpr int ORBIS_UPDATER_CORE_ERROR_PUP_US_REVOKED = 0x8018085b; // 2149058651 +constexpr int ORBIS_UPDATER_CORE_ERROR_PUP_US_VER = 0x8018085d; // 2149058653 +constexpr int ORBIS_UPDATER_CORE_ERROR_SATABR_FW_GENERAL = 0x80180a00; // 2149059072 +constexpr int ORBIS_UPDATER_CORE_ERROR_SATABR_FW_NOMEM = 0x80180a01; // 2149059073 +constexpr int ORBIS_UPDATER_CORE_ERROR_SATABR_FW_OPEN = 0x80180a02; // 2149059074 +constexpr int ORBIS_UPDATER_CORE_ERROR_SATABR_FW_REQ_INCOMPLETE = 0x80180a06; // 2149059078 +constexpr int ORBIS_UPDATER_CORE_ERROR_SATABR_FW_SEND = 0x80180a03; // 2149059075 +constexpr int ORBIS_UPDATER_CORE_ERROR_SATABR_FW_TIMEOUT = 0x80180a05; // 2149059077 +constexpr int ORBIS_UPDATER_CORE_ERROR_SATABR_FW_VERIFY = 0x80180a07; // 2149059079 +constexpr int ORBIS_UPDATER_CORE_ERROR_SATABR_FW_WRONG_FORMAT = 0x80180a04; // 2149059076 +constexpr int ORBIS_UPDATER_CORE_ERROR_SC_FW_BADF = 0x80180956; // 2149058902 +constexpr int ORBIS_UPDATER_CORE_ERROR_SC_FW_BUSY = 0x80180952; // 2149058898 +constexpr int ORBIS_UPDATER_CORE_ERROR_SC_FW_FAULT = 0x80180957; // 2149058903 +constexpr int ORBIS_UPDATER_CORE_ERROR_SC_FW_GENERAL = 0x80180950; // 2149058896 +constexpr int ORBIS_UPDATER_CORE_ERROR_SC_FW_INVAL = 0x80180953; // 2149058899 +constexpr int ORBIS_UPDATER_CORE_ERROR_SC_FW_IO = 0x80180955; // 2149058901 +constexpr int ORBIS_UPDATER_CORE_ERROR_SC_FW_NOMEM = 0x80180954; // 2149058900 +constexpr int ORBIS_UPDATER_CORE_ERROR_SC_FW_NXIO = 0x80180958; // 2149058904 +constexpr int ORBIS_UPDATER_CORE_ERROR_SC_FW_PERM = 0x80180951; // 2149058897 +constexpr int ORBIS_UPDATER_CORE_ERROR_SC_FW_TIMEOUT = 0x80180959; // 2149058905 +constexpr int ORBIS_UPDATER_CORE_ERROR_SHORT_FILE = 0x8018000c; // 2149056524 +constexpr int ORBIS_UPDATER_CORE_ERROR_SYSTEM_BETA_VERSION = 0x8018000e; // 2149056526 +constexpr int ORBIS_UPDATER_CORE_ERROR_SYSTEM_VERSION = 0x8018000a; // 2149056522 +constexpr int ORBIS_UPDATER_CORE_ERROR_UNCOMPRESS_BUF = 0x80180904; // 2149058820 +constexpr int ORBIS_UPDATER_CORE_ERROR_UNCOMPRESS_DATA = 0x80180902; // 2149058818 +constexpr int ORBIS_UPDATER_CORE_ERROR_UNCOMPRESS_GENERAL = 0x80180900; // 2149058816 +constexpr int ORBIS_UPDATER_CORE_ERROR_UNCOMPRESS_NOMEM = 0x80180903; // 2149058819 +constexpr int ORBIS_UPDATER_CORE_ERROR_UNCOMPRESS_STREAM = 0x80180901; // 2149058817 +constexpr int ORBIS_UPDATER_CORE_ERROR_VERIFY_ONLY = 0x8018000b; // 2149056523 +constexpr int ORBIS_UPDATER_CORE_ERROR_VERIFY_WRITE = 0x80180009; // 2149056521 +constexpr int ORBIS_UPDATER_CORE_ERROR_WRONG_FORMAT = 0x80180003; // 2149056515 + +// UPSRV +constexpr int ORBIS_UPSRV_CLIENT_ERROR_ALREADY_INITIALIZED = 0x80182401; // 2149065729 +constexpr int ORBIS_UPSRV_CLIENT_ERROR_BUSY = 0x80182405; // 2149065733 +constexpr int ORBIS_UPSRV_CLIENT_ERROR_INTERNAL = 0x80182400; // 2149065728 +constexpr int ORBIS_UPSRV_CLIENT_ERROR_INVALID_ARGUMENT = 0x80182404; // 2149065732 +constexpr int ORBIS_UPSRV_CLIENT_ERROR_NOT_INITIALIZED = 0x80182402; // 2149065730 +constexpr int ORBIS_UPSRV_CLIENT_ERROR_OUT_OF_MEMORY = 0x80182403; // 2149065731 +constexpr int ORBIS_UPSRV_ERROR_ALREADY_INITIALIZED = 0x80182601; // 2149066241 +constexpr int ORBIS_UPSRV_ERROR_APPDB_NOT_READY = 0x8018261d; // 2149066269 +constexpr int ORBIS_UPSRV_ERROR_BETA_NO_ENTITLEMENT = 0x80182618; // 2149066264 +constexpr int ORBIS_UPSRV_ERROR_BETA_UNAVAILABLE = 0x80182617; // 2149066263 +constexpr int ORBIS_UPSRV_ERROR_CANCELED = 0x80182614; // 2149066260 +constexpr int ORBIS_UPSRV_ERROR_CURRENT_TASK_NOT_FOUND = 0x80182612; // 2149066258 +constexpr int ORBIS_UPSRV_ERROR_HANDLER_IS_BUSY = 0x8018261c; // 2149066268 +constexpr int ORBIS_UPSRV_ERROR_INTERNAL = 0x80182600; // 2149066240 +constexpr int ORBIS_UPSRV_ERROR_INVALID_ARGUMENT = 0x80182602; // 2149066242 +constexpr int ORBIS_UPSRV_ERROR_INVALID_HANDLER = 0x8018261b; // 2149066267 +constexpr int ORBIS_UPSRV_ERROR_LASTEST_VER_SYSTEM = 0x80182605; // 2149066245 +constexpr int ORBIS_UPSRV_ERROR_NOT_ACCESS_SYSTEM_STORAGE = 0x80182607; // 2149066247 +constexpr int ORBIS_UPSRV_ERROR_NOT_SUPPORTED = 0x80182615; // 2149066261 +constexpr int ORBIS_UPSRV_ERROR_OUT_OF_MEMORY = 0x80182603; // 2149066243 +constexpr int ORBIS_UPSRV_ERROR_REBOOT_ERROR = 0x8018260a; // 2149066250 +constexpr int ORBIS_UPSRV_ERROR_REGISTRY_ERROR = 0x80182609; // 2149066249 +constexpr int ORBIS_UPSRV_ERROR_UPDATE_FILE_CORRUPTED = 0x80182606; // 2149066246 +constexpr int ORBIS_UPSRV_ERROR_UPDATE_FILE_IS_NOT_OFFICIAL = 0x80182619; // 2149066265 +constexpr int ORBIS_UPSRV_ERROR_UPDATE_FILE_IS_UNEXPECTED_VERSION = 0x8018261a; // 2149066266 +constexpr int ORBIS_UPSRV_ERROR_UPDATE_FILE_NOT_FOUND = 0x80182604; // 2149066244 +constexpr int ORBIS_UPSRV_ERROR_UPDATE_FILE_NOT_USE = 0x80182608; // 2149066248 +constexpr int ORBIS_UPSRV_ERROR_USB_STORAGE_NOT_MOUNTED = 0x80182613; // 2149066259 +constexpr int ORBIS_UPSRV_ERROR_WAIT_DOWNLOAD_PHASE_TIMEOUT = 0x8018260b; // 2149066251 +constexpr int ORBIS_UPSRV_ERROR_WAIT_GET_EULA_TEXT_TIMEOUT = 0x80182610; // 2149066256 +constexpr int ORBIS_UPSRV_ERROR_WAIT_IMAGE_WRITE_PHASE_TIMEOUT = 0x8018260c; // 2149066252 +constexpr int ORBIS_UPSRV_ERROR_WAIT_LOAD_FEATURES_LIST_TIMEOUT = 0x80182611; // 2149066257 +constexpr int ORBIS_UPSRV_ERROR_WAIT_PHASE_CHANGE_TIMEOUT = 0x80182616; // 2149066262 +constexpr int ORBIS_UPSRV_ERROR_WAIT_REBOOT_PHASE_TIMEOUT = 0x8018260d; // 2149066253 +constexpr int ORBIS_UPSRV_ERROR_WAIT_WAITING_FOR_EULA_PHASE_TIMEOUT = 0x8018260e; // 2149066254 +constexpr int ORBIS_UPSRV_ERROR_WAIT_WAITING_FOR_UPDATE_PHASE_TIMEOUT = 0x8018260f; // 2149066255 +constexpr int ORBIS_UPSRV_SERVER_ERROR_ALREADY_INITIALIZED = 0x80182501; // 2149065985 +constexpr int ORBIS_UPSRV_SERVER_ERROR_FATAL = 0x80182509; // 2149065993 +constexpr int ORBIS_UPSRV_SERVER_ERROR_INTERNAL = 0x80182500; // 2149065984 +constexpr int ORBIS_UPSRV_SERVER_ERROR_INVALID_ARGUMENT = 0x80182504; // 2149065988 +constexpr int ORBIS_UPSRV_SERVER_ERROR_INVALID_OPERATION = 0x80182505; // 2149065989 +constexpr int ORBIS_UPSRV_SERVER_ERROR_NOT_INITIALIZED = 0x80182502; // 2149065986 +constexpr int ORBIS_UPSRV_SERVER_ERROR_OUT_OF_MEMORY = 0x80182503; // 2149065987 +constexpr int ORBIS_UPSRV_SERVER_ERROR_TASK_CANCELED = 0x80182507; // 2149065991 +constexpr int ORBIS_UPSRV_SERVER_ERROR_TASK_ID_NOT_FOUND = 0x80182506; // 2149065990 +constexpr int ORBIS_UPSRV_SERVER_ERROR_TASK_SHUTDOWN = 0x80182508; // 2149065992 + +// VIDEO_EDIT +constexpr int ORBIS_VIDEO_EDIT_ERROR_GENERAL = 0x81040100; // 2164523264 +constexpr int ORBIS_VIDEO_EDIT_ERROR_IMAGE_MANAGER = 0x81040105; // 2164523269 +constexpr int ORBIS_VIDEO_EDIT_ERROR_INVALID_ARGUMENT = 0x81040101; // 2164523265 +constexpr int ORBIS_VIDEO_EDIT_ERROR_OUT_OF_MEMORY = 0x81040102; // 2164523266 +constexpr int ORBIS_VIDEO_EDIT_ERROR_PREVIEW = 0x81040103; // 2164523267 +constexpr int ORBIS_VIDEO_EDIT_ERROR_PREVIEW_NOT_ENOUGH_SYSTEM_MEMORY = 0x81040104; // 2164523268 +constexpr int ORBIS_VIDEO_EDIT_ERROR_TRANSCODE = 0x81040106; // 2164523270 +constexpr int ORBIS_VIDEO_RECORDING_ERROR_FATAL = 0x80a80002; // 2158493698 +constexpr int ORBIS_VIDEO_RECORDING_ERROR_FILE_NO_DATA = 0x80a8000a; // 2158493706 +constexpr int ORBIS_VIDEO_RECORDING_ERROR_FILE_OPEN = 0x80a80004; // 2158493700 +constexpr int ORBIS_VIDEO_RECORDING_ERROR_FILE_WRITE = 0x80a80005; // 2158493701 +constexpr int ORBIS_VIDEO_RECORDING_ERROR_INTERRUPTED = 0x80a80007; // 2158493703 +constexpr int ORBIS_VIDEO_RECORDING_ERROR_INVALID_STATE = 0x80a80006; // 2158493702 +constexpr int ORBIS_VIDEO_RECORDING_ERROR_INVALID_VALUE = 0x80a80003; // 2158493699 +constexpr int ORBIS_VIDEO_RECORDING_ERROR_NO_SPACE = 0x80a80009; // 2158493705 +constexpr int ORBIS_VIDEO_RECORDING_ERROR_OUT_OF_MEMORY = 0x80a80001; // 2158493697 +constexpr int ORBIS_VIDEO_RECORDING_ERROR_UNSUPPORTED = 0x80a80008; // 2158493704 + +// VISION_RECOGNITION +constexpr int ORBIS_VISION_RECOGNITION_ERROR_FILE_OPEN_FAILED = 0x81070002; // 2164719618 +constexpr int ORBIS_VISION_RECOGNITION_ERROR_FILE_READ_FAILED = 0x81070006; // 2164719622 +constexpr int ORBIS_VISION_RECOGNITION_ERROR_FILE_SIZE_LARGE = 0x81070004; // 2164719620 +constexpr int ORBIS_VISION_RECOGNITION_ERROR_FILE_SIZE_SMALL = 0x81070005; // 2164719621 +constexpr int ORBIS_VISION_RECOGNITION_ERROR_FILE_SIZE_ZERO = 0x81070003; // 2164719619 +constexpr int ORBIS_VISION_RECOGNITION_ERROR_INITIALIZE_FAILURE = 0x81078001; // 2164752385 +constexpr int ORBIS_VISION_RECOGNITION_ERROR_INVALID_ARGUMENT = 0x81078002; // 2164752386 +constexpr int ORBIS_VISION_RECOGNITION_ERROR_OUT_OF_MEMORY = 0x81070001; // 2164719617 + +// VOICE_RECOGNITION +constexpr int ORBIS_VOICE_RECOGNITION_ERROR_DATABASE_CORRUPTED = 0x81060002; // 2164654082 +constexpr int ORBIS_VOICE_RECOGNITION_ERROR_VRC_NOT_FOUND = 0x81060001; // 2164654081 + +// VSH_AVCAP +constexpr int ORBIS_VSH_AVCAP_ERROR_EAGAIN = 0x80a70002; // 2158428162 +constexpr int ORBIS_VSH_AVCAP_ERROR_EBUSY = 0x80a70008; // 2158428168 +constexpr int ORBIS_VSH_AVCAP_ERROR_EEMPTY = 0x80a70006; // 2158428166 +constexpr int ORBIS_VSH_AVCAP_ERROR_EINTR = 0x80a70009; // 2158428169 +constexpr int ORBIS_VSH_AVCAP_ERROR_EINVAL = 0x80a70001; // 2158428161 +constexpr int ORBIS_VSH_AVCAP_ERROR_ENFILE = 0x80a70007; // 2158428167 +constexpr int ORBIS_VSH_AVCAP_ERROR_ENOMEM = 0x80a70003; // 2158428163 +constexpr int ORBIS_VSH_AVCAP_ERROR_ENOSPC = 0x80a70005; // 2158428165 +constexpr int ORBIS_VSH_AVCAP_ERROR_ENOTSUP = 0x80a7000a; // 2158428170 +constexpr int ORBIS_VSH_AVCAP_ERROR_ERESET = 0x80a70004; // 2158428164 + +// VU +constexpr int ORBIS_VU_ERROR_EXTERNAL_HDCP_DISABLED = 0x80fbf001; // 2163994625 +constexpr int ORBIS_VU_ERROR_INVALID_PARAM = 0x80fb0101; // 2163933441 + +// WEBBROWSER +constexpr int ORBIS_WEB_BROWSER_DIALOG_ERROR_NAVIGATION = 0x80e21001; // 2162298881 +constexpr int ORBIS_WEBBROWSER_ERROR_ALREADY_CREATED = 0x80e10105; // 2162229509 +constexpr int ORBIS_WEBBROWSER_ERROR_ALREADY_DELETED = 0x80e10106; // 2162229510 +constexpr int ORBIS_WEBBROWSER_ERROR_CANNOT_ADD_BOOKMARK = 0x80e1010b; // 2162229515 +constexpr int ORBIS_WEBBROWSER_ERROR_CANNOT_ADD_FOLDER = 0x80e1010c; // 2162229516 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_CANCELED = 0x80e10207; // 2162229767 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_FATAL = 0x80e10208; // 2162229768 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_INI_FILE = 0x80e10206; // 2162229766 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_INVALID_ARG = 0x80e10201; // 2162229761 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_INVALID_OP = 0x80e10203; // 2162229763 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_NO_MEMORY = 0x80e10202; // 2162229762 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_NO_ROWID = 0x80e10205; // 2162229765 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_NOT_FOUND = 0x80e10204; // 2162229764 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_NOT_SUPPORTED = 0x80e10209; // 2162229769 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_ABORT = 0x80e10304; // 2162230020 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_AUTH = 0x80e10317; // 2162230039 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_BUSY = 0x80e10305; // 2162230021 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_CANTOPEN = 0x80e1030e; // 2162230030 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_CONSTRAINT = 0x80e10313; // 2162230035 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_CORRUPT = 0x80e1030b; // 2162230027 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_EMPTY = 0x80e10310; // 2162230032 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_ERROR = 0x80e10301; // 2162230017 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_FORMAT = 0x80e10318; // 2162230040 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_FULL = 0x80e1030d; // 2162230029 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_INTERNAL = 0x80e10302; // 2162230018 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_INTERRUPT = 0x80e10309; // 2162230025 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_IOERR = 0x80e1030a; // 2162230026 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_IOERR_ACCESS = 0x80e1040d; // 2162230285 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_IOERR_BLOCKED = 0x80e1040b; // 2162230283 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_IOERR_CHECKRESERVEDLOCK = + 0x80e1040e; // 2162230286 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_IOERR_CLOSE = 0x80e10410; // 2162230288 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_IOERR_DELETE = 0x80e1040a; // 2162230282 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_IOERR_DIR_CLOSE = 0x80e10411; // 2162230289 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_IOERR_DIR_FSYNC = 0x80e10405; // 2162230277 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_IOERR_FSTAT = 0x80e10407; // 2162230279 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_IOERR_FSYNC = 0x80e10404; // 2162230276 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_IOERR_LOCK = 0x80e1040f; // 2162230287 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_IOERR_NOMEM = 0x80e1040c; // 2162230284 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_IOERR_RDLOCK = 0x80e10409; // 2162230281 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_IOERR_READ = 0x80e10401; // 2162230273 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_IOERR_SHORT_READ = 0x80e10402; // 2162230274 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_IOERR_TRUNCATE = 0x80e10406; // 2162230278 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_IOERR_UNLOCK = 0x80e10408; // 2162230280 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_IOERR_WRITE = 0x80e10403; // 2162230275 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_LOCKED = 0x80e10306; // 2162230022 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_LOCKED_SHAREDCACHE = + 0x80e10412; // 2162230290 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_MISMATCH = 0x80e10314; // 2162230036 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_MISUSE = 0x80e10315; // 2162230037 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_NOLFS = 0x80e10316; // 2162230038 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_NOMEM = 0x80e10307; // 2162230023 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_NOTADB = 0x80e1031a; // 2162230042 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_NOTFOUND = 0x80e1030c; // 2162230028 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_PERM = 0x80e10303; // 2162230019 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_PROTOCOL = 0x80e1030f; // 2162230031 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_RANGE = 0x80e10319; // 2162230041 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_READONLY = 0x80e10308; // 2162230024 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_SCHEMA = 0x80e10311; // 2162230033 +constexpr int ORBIS_WEBBROWSER_ERROR_DBUTIL_ERR_SQLITE_TOOBIG = 0x80e10312; // 2162230034 +constexpr int ORBIS_WEBBROWSER_ERROR_FATAL = 0x80e1010d; // 2162229517 +constexpr int ORBIS_WEBBROWSER_ERROR_INVALID_ARG = 0x80e10101; // 2162229505 +constexpr int ORBIS_WEBBROWSER_ERROR_INVALID_PTR = 0x80e10102; // 2162229506 +constexpr int ORBIS_WEBBROWSER_ERROR_JOB_CANCELED = 0x80e10107; // 2162229511 +constexpr int ORBIS_WEBBROWSER_ERROR_NO_INSTANCE = 0x80e1010a; // 2162229514 +constexpr int ORBIS_WEBBROWSER_ERROR_NO_MEMORY = 0x80e10103; // 2162229507 +constexpr int ORBIS_WEBBROWSER_ERROR_NOT_FOUND = 0x80e10109; // 2162229513 +constexpr int ORBIS_WEBBROWSER_ERROR_NOT_IMPL = 0x80e10104; // 2162229508 +constexpr int ORBIS_WEBBROWSER_ERROR_NOT_INITIALIZED = 0x80e10108; // 2162229512 + +// WEBVIEW +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_ABORTED_BY_CALLBACK = 0x80e8002a; // 2162688042 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_AGAIN = 0x80e80051; // 2162688081 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_BAD_CONTENT_ENCODING = 0x80e8003d; // 2162688061 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_BAD_DOWNLOAD_RESUME = 0x80e80024; // 2162688036 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_BAD_FUNCTION_ARGUMENT = 0x80e8002b; // 2162688043 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_CHUNK_FAILED = 0x80e80058; // 2162688088 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_COULDNT_CONNECT = 0x80e80007; // 2162688007 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_COULDNT_RESOLVE_HOST = 0x80e80006; // 2162688006 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_COULDNT_RESOLVE_PROXY = 0x80e80005; // 2162688005 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_FAILED_INIT = 0x80e80002; // 2162688002 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_FILE_COULDNT_READ_FILE = 0x80e80025; // 2162688037 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_FILESIZE_EXCEEDED = 0x80e8003f; // 2162688063 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_FUNCTION_NOT_FOUND = 0x80e80029; // 2162688041 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_GOT_NOTHING = 0x80e80034; // 2162688052 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_HTTP_POST_ERROR = 0x80e80022; // 2162688034 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_INTERFACE_FAILED = 0x80e8002d; // 2162688045 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_OPERATION_TIMEDOUT = 0x80e8001c; // 2162688028 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_OUT_OF_MEMORY = 0x80e8001b; // 2162688027 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_PARTIAL_FILE = 0x80e80012; // 2162688018 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_PEER_FAILED_VERIFICATION = 0x80e80033; // 2162688051 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_QUOTE_ERROR = 0x80e80015; // 2162688021 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_RANGE_ERROR = 0x80e80021; // 2162688033 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_READ_ERROR = 0x80e8001a; // 2162688026 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_RECV_ERROR = 0x80e80038; // 2162688056 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_REMOTE_ACCESS_DENIED = 0x80e80009; // 2162688009 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_SEND_ERROR = 0x80e80037; // 2162688055 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_SEND_FAIL_REWIND = 0x80e80041; // 2162688065 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_SSL_CACERT = 0x80e8003c; // 2162688060 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_SSL_CACERT_BADFILE = 0x80e8004d; // 2162688077 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_SSL_CERTPROBLEM = 0x80e8003a; // 2162688058 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_SSL_CIPHER = 0x80e8003b; // 2162688059 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_SSL_CONNECT_ERROR = 0x80e80023; // 2162688035 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_SSL_ENGINE_INITFAILED = 0x80e80042; // 2162688066 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_SSL_ISSUER_ERROR = 0x80e80053; // 2162688083 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_SSL_SHUTDOWN_FAILED = 0x80e80050; // 2162688080 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_TOO_MANY_REDIRECTS = 0x80e8002f; // 2162688047 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_UNKNOWN_OPTION = 0x80e80030; // 2162688048 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_UNSUPPORTED_PROTOCOL = 0x80e80001; // 2162688001 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_UPLOAD_FAILED = 0x80e80019; // 2162688025 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_URL_MALFORMAT = 0x80e80003; // 2162688003 +constexpr int ORBIS_WEBVIEW_NETWORK_ERROR_WRITE_ERROR = 0x80e80017; // 2162688023 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_AKID_ISSUER_SERIAL_MISMATCH = 0x80e8101f; // 2162692127 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_AKID_SKID_MISMATCH = 0x80e8101e; // 2162692126 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_APPLICATION_VERIFICATION = 0x80e81032; // 2162692146 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_CERT_CHAIN_TOO_LONG = 0x80e81016; // 2162692118 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_CERT_HAS_EXPIRED = 0x80e8100a; // 2162692106 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_CERT_NOT_YET_VALID = 0x80e81009; // 2162692105 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_CERT_REJECTED = 0x80e8101c; // 2162692124 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_CERT_REVOKED = 0x80e81017; // 2162692119 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_CERT_SIGNATURE_FAILURE = 0x80e81007; // 2162692103 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_CERT_UNTRUSTED = 0x80e8101b; // 2162692123 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_CRL_HAS_EXPIRED = 0x80e8100c; // 2162692108 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_CRL_NOT_YET_VALID = 0x80e8100b; // 2162692107 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_CRL_PATH_VALIDATION_ERROR = 0x80e81036; // 2162692150 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_CRL_SIGNATURE_FAILURE = 0x80e81008; // 2162692104 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_DEPTH_ZERO_SELF_SIGNED_CERT = 0x80e81012; // 2162692114 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_DIFFERENT_CRL_SCOPE = 0x80e8102c; // 2162692140 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_ERROR_IN_CERT_NOT_AFTER_FIELD = 0x80e8100e; // 2162692110 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_ERROR_IN_CERT_NOT_BEFORE_FIELD = + 0x80e8100d; // 2162692109 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_ERROR_IN_CRL_LAST_UPDATE_FIELD = + 0x80e8100f; // 2162692111 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_ERROR_IN_CRL_NEXT_UPDATE_FIELD = + 0x80e81010; // 2162692112 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_EXCLUDED_VIOLATION = 0x80e81030; // 2162692144 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_INVALID_CA = 0x80e81018; // 2162692120 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_INVALID_EXTENSION = 0x80e81029; // 2162692137 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_INVALID_NON_CA = 0x80e81025; // 2162692133 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_INVALID_POLICY_EXTENSION = 0x80e8102a; // 2162692138 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_INVALID_PURPOSE = 0x80e8101a; // 2162692122 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_KEYUSAGE_NO_CERTSIGN = 0x80e81020; // 2162692128 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_KEYUSAGE_NO_CRL_SIGN = 0x80e81023; // 2162692131 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_KEYUSAGE_NO_DIGITAL_SIGNATURE = 0x80e81027; // 2162692135 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_NO_EXPLICIT_POLICY = 0x80e8102b; // 2162692139 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_OUT_OF_MEM = 0x80e81011; // 2162692113 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_PATH_LENGTH_EXCEEDED = 0x80e81019; // 2162692121 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_PERMITTED_VIOLATION = 0x80e8102f; // 2162692143 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_PROXY_CERTIFICATES_NOT_ALLOWED = + 0x80e81028; // 2162692136 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_PROXY_PATH_LENGTH_EXCEEDED = 0x80e81026; // 2162692134 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_SELF_SIGNED_CERT_IN_CHAIN = 0x80e81013; // 2162692115 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_SSL_CN_CHECK = 0x80e81064; // 2162692196 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_SUBJECT_ISSUER_MISMATCH = 0x80e8101d; // 2162692125 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_SUBTREE_MINMAX = 0x80e81031; // 2162692145 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY = + 0x80e81006; // 2162692102 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_UNABLE_TO_DECRYPT_CERT_SIGNATURE = + 0x80e81004; // 2162692100 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_UNABLE_TO_DECRYPT_CRL_SIGNATURE = + 0x80e81005; // 2162692101 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_UNABLE_TO_GET_CR = 0x80e81003; // 2162692099 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_UNABLE_TO_GET_CRL_ISSUER = 0x80e81021; // 2162692129 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_UNABLE_TO_GET_ISSUER_CERT = 0x80e81002; // 2162692098 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY = + 0x80e81014; // 2162692116 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_UNABLE_TO_VERIFY_LEAF_SIGNATURE = + 0x80e81015; // 2162692117 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_UNHANDLED_CRITICAL_CRL_EXTENSION = + 0x80e81024; // 2162692132 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_UNHANDLED_CRITICAL_EXTENSION = 0x80e81022; // 2162692130 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_UNNESTED_RESOURCE = 0x80e8102e; // 2162692142 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_UNSUPPORTED_CONSTRAINT_SYNTAX = 0x80e81034; // 2162692148 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_UNSUPPORTED_CONSTRAINT_TYPE = 0x80e81033; // 2162692147 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_UNSUPPORTED_EXTENSION_FEATURE = 0x80e8102d; // 2162692141 +constexpr int ORBIS_WEBVIEW_SSL_X509_ERROR_UNSUPPORTED_NAME_SYNTAX = 0x80e81035; // 2162692149 + +// XML +constexpr int ORBIS_XML_ERROR_DOM_ERROR = 0x80850200; // 2156200448 +constexpr int ORBIS_XML_ERROR_DOM_INVALID_ENITITY = 0x80850209; // 2156200457 +constexpr int ORBIS_XML_ERROR_DOM_INVALID_NODE_TYPE = 0x8085020a; // 2156200458 +constexpr int ORBIS_XML_ERROR_DOM_MAX_NUM_OF_ATTR_ERROR = 0x80850205; // 2156200453 +constexpr int ORBIS_XML_ERROR_DOM_MAX_SIZE_OF_ATTR_NAME_ERROR = 0x80850207; // 2156200455 +constexpr int ORBIS_XML_ERROR_DOM_MAX_SIZE_OF_ATTR_VALUE_ERROR = 0x80850208; // 2156200456 +constexpr int ORBIS_XML_ERROR_DOM_MAX_SIZE_OF_ELEMENT_NAME_ERROR = 0x80850206; // 2156200454 +constexpr int ORBIS_XML_ERROR_DOM_MAX_UNIQUE_ATTR_ERROR = 0x80850204; // 2156200452 +constexpr int ORBIS_XML_ERROR_DOM_MAX_UNIQUE_ELEMENT_ERROR = 0x80850203; // 2156200451 +constexpr int ORBIS_XML_ERROR_DOM_NODE_NOT_FOUND = 0x80850201; // 2156200449 +constexpr int ORBIS_XML_ERROR_DOM_READ_ONLY_ERROR = 0x80850202; // 2156200450 +constexpr int ORBIS_XML_ERROR_GENERIC_ERROR = 0x80850000; // 2156199936 +constexpr int ORBIS_XML_ERROR_INITIALIZE_FAILED = 0x80850005; // 2156199941 +constexpr int ORBIS_XML_ERROR_INVALID_ARGUMENT = 0x80850003; // 2156199939 +constexpr int ORBIS_XML_ERROR_INVALID_BIN_XML = 0x80850006; // 2156199942 +constexpr int ORBIS_XML_ERROR_NO_MEMORY = 0x80850001; // 2156199937 +constexpr int ORBIS_XML_ERROR_NOT_INITIALIZED = 0x80850002; // 2156199938 +constexpr int ORBIS_XML_ERROR_NOT_SUPPORTED = 0x80850004; // 2156199940 +constexpr int ORBIS_XML_ERROR_PARSER_BUSY = 0x80850007; // 2156199943 +constexpr int ORBIS_XML_ERROR_XML_CLOSING_ANGLE_BRACKET_CHAR_NOT_FOUND = 0x8085000e; // 2156199950 +constexpr int ORBIS_XML_ERROR_XML_DOCUMENT_ELEMENT_NOT_FOUND = 0x80850019; // 2156199961 +constexpr int ORBIS_XML_ERROR_XML_DUPLICATE_ATTR_NAME = 0x8085001a; // 2156199962 +constexpr int ORBIS_XML_ERROR_XML_END_OF_CD_SECT_NOT_FOUND = 0x80850013; // 2156199955 +constexpr int ORBIS_XML_ERROR_XML_END_OF_COMMENT_NOT_FOUND = 0x80850012; // 2156199954 +constexpr int ORBIS_XML_ERROR_XML_END_OF_DTD_NOT_FOUND = 0x80850014; // 2156199956 +constexpr int ORBIS_XML_ERROR_XML_END_TAG_MISMATCH = 0x8085000a; // 2156199946 +constexpr int ORBIS_XML_ERROR_XML_EQUALITY_CHAR_NOT_FOUND = 0x8085000f; // 2156199951 +constexpr int ORBIS_XML_ERROR_XML_HANDLER_NOT_SET = 0x80850016; // 2156199958 +constexpr int ORBIS_XML_ERROR_XML_INVALID_CHAR = 0x8085000b; // 2156199947 +constexpr int ORBIS_XML_ERROR_XML_INVALID_DEC_VALUE = 0x8085000c; // 2156199948 +constexpr int ORBIS_XML_ERROR_XML_INVALID_DOCUMENT_ELEMENT = 0x80850018; // 2156199960 +constexpr int ORBIS_XML_ERROR_XML_INVALID_HEX_VALUE = 0x8085000d; // 2156199949 +constexpr int ORBIS_XML_ERROR_XML_INVALID_PI = 0x80850017; // 2156199959 +constexpr int ORBIS_XML_ERROR_XML_QUOTE_CHAR_NOT_FOUND = 0x80850011; // 2156199953 +constexpr int ORBIS_XML_ERROR_XML_SEMI_COLON_CHAR_NOT_FOUND = 0x80850010; // 2156199952 +constexpr int ORBIS_XML_ERROR_XML_SYNTAX_ERROR = 0x80850009; // 2156199945 +constexpr int ORBIS_XML_ERROR_XML_UNEXPEXTED_EO_F = 0x80850008; // 2156199944 +constexpr int ORBIS_XML_ERROR_XML_UNKNOWN_ENCODING = 0x80850015; // 2156199957 + +// AC3 +constexpr int ORBIS_AC3_ENC_ERROR_INTERNAL_ERROR = 0x80e00000; // 2162163712 +constexpr int ORBIS_AC3_ENC_ERROR_INVALID_BIT_RATE = 0x80e00005; // 2162163717 +constexpr int ORBIS_AC3_ENC_ERROR_INVALID_HANDLE = 0x80e00001; // 2162163713 +constexpr int ORBIS_AC3_ENC_ERROR_INVALID_INPUT_FORMAT = 0x80e00006; // 2162163718 +constexpr int ORBIS_AC3_ENC_ERROR_INVALID_NUM_CHANNELS = 0x80e00003; // 2162163715 +constexpr int ORBIS_AC3_ENC_ERROR_INVALID_OUTPUT_FORMAT = 0x80e00007; // 2162163719 +constexpr int ORBIS_AC3_ENC_ERROR_INVALID_POINTER = 0x80e00002; // 2162163714 +constexpr int ORBIS_AC3_ENC_ERROR_INVALID_SAMPLE_RATE = 0x80e00004; // 2162163716 +constexpr int ORBIS_AC3_ENC_ERROR_NO_MORE_INSTANCES = 0x80e00008; // 2162163720 +constexpr int ORBIS_AC3_ENC_ERROR_NOT_IN_ENCODING = 0x80e00009; // 2162163721 + +// AJM +constexpr int ORBIS_AJM_ERROR_BAD_PRIORITY = 0x8093000e; // 2157117454 +constexpr int ORBIS_AJM_ERROR_BUFFER_TOO_BIG = 0x80930015; // 2157117461 +constexpr int ORBIS_AJM_ERROR_BUSY = 0x8093000d; // 2157117453 +constexpr int ORBIS_AJM_ERROR_CANCELLED = 0x80930017; // 2157117463 +constexpr int ORBIS_AJM_ERROR_CODEC_ALREADY_REGISTERED = 0x80930009; // 2157117449 +constexpr int ORBIS_AJM_ERROR_CODEC_NOT_REGISTERED = 0x8093000a; // 2157117450 +constexpr int ORBIS_AJM_ERROR_CODEC_NOT_SUPPORTED = 0x80930008; // 2157117448 +constexpr int ORBIS_AJM_ERROR_FLAG_NOT_SUPPORTED = 0x8093000c; // 2157117452 +constexpr int ORBIS_AJM_ERROR_IN_PROGRESS = 0x8093000f; // 2157117455 +constexpr int ORBIS_AJM_ERROR_INVALID_ADDRESS = 0x80930016; // 2157117462 +constexpr int ORBIS_AJM_ERROR_INVALID_BATCH = 0x80930004; // 2157117444 +constexpr int ORBIS_AJM_ERROR_INVALID_CONTEXT = 0x80930002; // 2157117442 +constexpr int ORBIS_AJM_ERROR_INVALID_INSTANCE = 0x80930003; // 2157117443 +constexpr int ORBIS_AJM_ERROR_INVALID_OPCODE = 0x80930013; // 2157117459 +constexpr int ORBIS_AJM_ERROR_INVALID_PARAMETER = 0x80930005; // 2157117445 +constexpr int ORBIS_AJM_ERROR_JOB_CREATION = 0x80930012; // 2157117458 +constexpr int ORBIS_AJM_ERROR_MALFORMED_BATCH = 0x80930011; // 2157117457 +constexpr int ORBIS_AJM_ERROR_OUT_OF_MEMORY = 0x80930006; // 2157117446 +constexpr int ORBIS_AJM_ERROR_OUT_OF_RESOURCES = 0x80930007; // 2157117447 +constexpr int ORBIS_AJM_ERROR_PRIORITY_VIOLATION = 0x80930014; // 2157117460 +constexpr int ORBIS_AJM_ERROR_RETRY = 0x80930010; // 2157117456 +constexpr int ORBIS_AJM_ERROR_UNKNOWN = 0x80930001; // 2157117441 +constexpr int ORBIS_AJM_ERROR_WRONG_REVISION_FLAG = 0x8093000b; // 2157117451 + +// AV +constexpr int ORBIS_AV_CONTROL_ERROR_BLANK_TIMEOUT = 0x802a0006; // 2150236166 +constexpr int ORBIS_AV_CONTROL_ERROR_DP_LINK_TRAINING_FAIL = 0x802a0005; // 2150236165 +constexpr int ORBIS_AV_CONTROL_ERROR_INIT_FAIL = 0x802a0007; // 2150236167 +constexpr int ORBIS_AV_CONTROL_ERROR_INVALID_MODE = 0x802a0003; // 2150236163 +constexpr int ORBIS_AV_CONTROL_ERROR_INVALID_PARAM = 0x802a0001; // 2150236161 +constexpr int ORBIS_AV_CONTROL_ERROR_INVALID_PITCH = 0x802a0002; // 2150236162 +constexpr int ORBIS_AV_CONTROL_ERROR_PLL_FAIL = 0x802a0004; // 2150236164 +constexpr int ORBIS_AV_SETTING_ERROR_BUSY = 0x809a000a; // 2157576202 +constexpr int ORBIS_AV_SETTING_ERROR_DEVICE = 0x809a0007; // 2157576199 +constexpr int ORBIS_AV_SETTING_ERROR_INTERNAL = 0x809a00ff; // 2157576447 +constexpr int ORBIS_AV_SETTING_ERROR_INVALID_ARG = 0x809a0002; // 2157576194 +constexpr int ORBIS_AV_SETTING_ERROR_MEMORY = 0x809a0006; // 2157576198 +constexpr int ORBIS_AV_SETTING_ERROR_NO_DEVICE = 0x809a0004; // 2157576196 +constexpr int ORBIS_AV_SETTING_ERROR_NULL_POINTER_ARG = 0x809a0001; // 2157576193 +constexpr int ORBIS_AV_SETTING_ERROR_OVER_MAX_NOTIFICATION_CLIENT_NUM = 0x809a0010; // 2157576208 +constexpr int ORBIS_AV_SETTING_ERROR_SCANIN_ARG = 0x809a0080; // 2157576320 +constexpr int ORBIS_AV_SETTING_ERROR_SCANIN_DISABLED = 0x809a0081; // 2157576321 +constexpr int ORBIS_AV_SETTING_ERROR_SCANIN_UNSUPPORTED_SCALING_RATIO = 0x809a0082; // 2157576322 +constexpr int ORBIS_AV_SETTING_ERROR_UNAVAILABLE_FORMAT = 0x809a000b; // 2157576203 +constexpr int ORBIS_AV_SETTING_ERROR_UNKNOWN_DEVICE_ID = 0x809a0003; // 2157576195 +constexpr int ORBIS_AV_SETTING_ERROR_UNKNOWN_NOTIFICATION_CLIENT = 0x809a0011; // 2157576209 +constexpr int ORBIS_AV_SETTING_ERROR_UNKNOWN_PROCESS = 0x809a0008; // 2157576200 +constexpr int ORBIS_AV_SETTING_ERROR_UNKNOWN_TICKET = 0x809a0009; // 2157576201 +constexpr int ORBIS_AV_SETTING_ERROR_UNSUPPORTED_FORMAT = 0x809a0005; // 2157576197 +constexpr int ORBIS_AVPLAYER_ERROR_INFO_AES_ENCRY = 0x806a00b5; // 2154430645 +constexpr int ORBIS_AVPLAYER_ERROR_INFO_MARLIN_ENCRY = 0x806a00b0; // 2154430640 +constexpr int ORBIS_AVPLAYER_ERROR_INFO_OTHER_ENCRY = 0x806a00bf; // 2154430655 +constexpr int ORBIS_AVPLAYER_ERROR_INFO_PLAYREADY_ENCRY = 0x806a00b4; // 2154430644 +constexpr int ORBIS_AVPLAYER_ERROR_INVALID_PARAMS = 0x806a0001; // 2154430465 +constexpr int ORBIS_AVPLAYER_ERROR_NO_MEMORY = 0x806a0003; // 2154430467 +constexpr int ORBIS_AVPLAYER_ERROR_NOT_SUPPORTED = 0x806a0004; // 2154430468 +constexpr int ORBIS_AVPLAYER_ERROR_OPERATION_FAILED = 0x806a0002; // 2154430466 +constexpr int ORBIS_AVPLAYER_ERROR_WAR_FILE_NONINTERLEAVED = 0x806a00a0; // 2154430624 +constexpr int ORBIS_AVPLAYER_ERROR_WAR_LOOPING_BACK = 0x806a00a1; // 2154430625 + +// BT +constexpr int ORBIS_BT_ERROR_ACL_TX_BUF_OVERFLOW = 0x802f0b03; // 2150566659 +constexpr int ORBIS_BT_ERROR_ACL_TX_CB_OVERFLOW = 0x802f0b04; // 2150566660 +constexpr int ORBIS_BT_ERROR_ATT_APPLICATION_ERROR_HI = 0x802f23ff; // 2150573055 +constexpr int ORBIS_BT_ERROR_ATT_APPLICATION_ERROR_LO = 0x802f2380; // 2150572928 +constexpr int ORBIS_BT_ERROR_ATT_ATTRIBUTE_NOT_FOUND = 0x802f230a; // 2150572810 +constexpr int ORBIS_BT_ERROR_ATT_ATTRIBUTE_NOT_LONG = 0x802f230b; // 2150572811 +constexpr int ORBIS_BT_ERROR_ATT_BASE = 0x802f2300; // 2150572800 +constexpr int ORBIS_BT_ERROR_ATT_INSUFFICIENT_AUTHENTICATION = 0x802f2305; // 2150572805 +constexpr int ORBIS_BT_ERROR_ATT_INSUFFICIENT_AUTHORIZATION = 0x802f2308; // 2150572808 +constexpr int ORBIS_BT_ERROR_ATT_INSUFFICIENT_ENCRYPTION = 0x802f230f; // 2150572815 +constexpr int ORBIS_BT_ERROR_ATT_INSUFFICIENT_ENCRYPTION_KEY_SIZE = 0x802f230c; // 2150572812 +constexpr int ORBIS_BT_ERROR_ATT_INSUFFICIENT_RESOURCES = 0x802f2311; // 2150572817 +constexpr int ORBIS_BT_ERROR_ATT_INVALID_ATTRIBUTE_VALUE_LENGTH = 0x802f230d; // 2150572813 +constexpr int ORBIS_BT_ERROR_ATT_INVALID_HANDLE = 0x802f2301; // 2150572801 +constexpr int ORBIS_BT_ERROR_ATT_INVALID_OFFSET = 0x802f2307; // 2150572807 +constexpr int ORBIS_BT_ERROR_ATT_INVALID_PDU = 0x802f2304; // 2150572804 +constexpr int ORBIS_BT_ERROR_ATT_NOT_YET = 0x802f2a07; // 2150574599 +constexpr int ORBIS_BT_ERROR_ATT_PEPARE_QUEUE_FULL = 0x802f2309; // 2150572809 +constexpr int ORBIS_BT_ERROR_ATT_READ_INVALID_INTERNAL = 0x802f2a03; // 2150574595 +constexpr int ORBIS_BT_ERROR_ATT_READ_INVALID_LENGTH = 0x802f2a02; // 2150574594 +constexpr int ORBIS_BT_ERROR_ATT_READ_INVALID_NO = 0x802f2a01; // 2150574593 +constexpr int ORBIS_BT_ERROR_ATT_READ_NOT_PERMITTED = 0x802f2302; // 2150572802 +constexpr int ORBIS_BT_ERROR_ATT_REQUEST_NOT_SUPPORTED = 0x802f2306; // 2150572806 +constexpr int ORBIS_BT_ERROR_ATT_UNLIKELY_ERROR = 0x802f230e; // 2150572814 +constexpr int ORBIS_BT_ERROR_ATT_UNSUPPORTED_GROUP_TYPE = 0x802f2310; // 2150572816 +constexpr int ORBIS_BT_ERROR_ATT_WRITE_INVALID_INTERNAL = 0x802f2a06; // 2150574598 +constexpr int ORBIS_BT_ERROR_ATT_WRITE_INVALID_LENGTH = 0x802f2a05; // 2150574597 +constexpr int ORBIS_BT_ERROR_ATT_WRITE_INVALID_NO = 0x802f2a04; // 2150574596 +constexpr int ORBIS_BT_ERROR_ATT_WRITE_NOT_PERMITTED = 0x802f2303; // 2150572803 +constexpr int ORBIS_BT_ERROR_AUDIO_COMBI_NOT_FOUND = 0x802f0d16; // 2150567190 +constexpr int ORBIS_BT_ERROR_AUDIO_FREQ_IS_LE = 0x802f2209; // 2150572553 +constexpr int ORBIS_BT_ERROR_AUDIO_FREQ_NOT_CONNECTED = 0x802f0d0f; // 2150567183 +constexpr int ORBIS_BT_ERROR_AUDIO_INTERNAL_1 = 0x802f0d18; // 2150567192 +constexpr int ORBIS_BT_ERROR_AUDIO_RECV_BAD_TYPE = 0x802f0d12; // 2150567186 +constexpr int ORBIS_BT_ERROR_AUDIO_RECV_BUSY = 0x802f0d1a; // 2150567194 +constexpr int ORBIS_BT_ERROR_AUDIO_RECV_INVALID_LENGTH = 0x802f0d0a; // 2150567178 +constexpr int ORBIS_BT_ERROR_AUDIO_RECV_IS_LE = 0x802f2208; // 2150572552 +constexpr int ORBIS_BT_ERROR_AUDIO_RECV_NO_CAP = 0x802f0d1d; // 2150567197 +constexpr int ORBIS_BT_ERROR_AUDIO_RECV_NOT_CONNECTED = 0x802f0d08; // 2150567176 +constexpr int ORBIS_BT_ERROR_AUDIO_RECV_NOT_STARTED = 0x802f0d09; // 2150567177 +constexpr int ORBIS_BT_ERROR_AUDIO_RECV_SERV_FAILED = 0x802f0d1e; // 2150567198 +constexpr int ORBIS_BT_ERROR_AUDIO_SEND_BAD_TYPE = 0x802f0d11; // 2150567185 +constexpr int ORBIS_BT_ERROR_AUDIO_SEND_BUSY = 0x802f0d19; // 2150567193 +constexpr int ORBIS_BT_ERROR_AUDIO_SEND_INVALID_LENGTH = 0x802f0d07; // 2150567175 +constexpr int ORBIS_BT_ERROR_AUDIO_SEND_IS_LE = 0x802f2207; // 2150572551 +constexpr int ORBIS_BT_ERROR_AUDIO_SEND_NO_CAP = 0x802f0d1b; // 2150567195 +constexpr int ORBIS_BT_ERROR_AUDIO_SEND_NO_CP = 0x802f0d10; // 2150567184 +constexpr int ORBIS_BT_ERROR_AUDIO_SEND_NO_L2C = 0x802f0d17; // 2150567191 +constexpr int ORBIS_BT_ERROR_AUDIO_SEND_NOT_CONNECTED = 0x802f0d05; // 2150567173 +constexpr int ORBIS_BT_ERROR_AUDIO_SEND_NOT_STARTED = 0x802f0d06; // 2150567174 +constexpr int ORBIS_BT_ERROR_AUDIO_SEND_SERV_FAILED = 0x802f0d1c; // 2150567196 +constexpr int ORBIS_BT_ERROR_AUDIO_START_INVALID_SERV = 0x802f0d0b; // 2150567179 +constexpr int ORBIS_BT_ERROR_AUDIO_START_IS_LE = 0x802f2205; // 2150572549 +constexpr int ORBIS_BT_ERROR_AUDIO_START_NO_CAP = 0x802f0d02; // 2150567170 +constexpr int ORBIS_BT_ERROR_AUDIO_START_NOT_CONNECTED = 0x802f0d01; // 2150567169 +constexpr int ORBIS_BT_ERROR_AUDIO_START_SERV_FAILED = 0x802f0d0d; // 2150567181 +constexpr int ORBIS_BT_ERROR_AUDIO_STOP_INVALID_SERV = 0x802f0d0c; // 2150567180 +constexpr int ORBIS_BT_ERROR_AUDIO_STOP_IS_LE = 0x802f2206; // 2150572550 +constexpr int ORBIS_BT_ERROR_AUDIO_STOP_NO_CAP = 0x802f0d04; // 2150567172 +constexpr int ORBIS_BT_ERROR_AUDIO_STOP_NOT_CONNECTED = 0x802f0d03; // 2150567171 +constexpr int ORBIS_BT_ERROR_AUDIO_STOP_SERV_FAILED = 0x802f0d0e; // 2150567182 +constexpr int ORBIS_BT_ERROR_AVCTP_CLOSE_NO_L2C = 0x802f0602; // 2150565378 +constexpr int ORBIS_BT_ERROR_AVCTP_IS_LE = 0x802f2203; // 2150572547 +constexpr int ORBIS_BT_ERROR_AVCTP_NOT_CONNECTED = 0x802f0604; // 2150565380 +constexpr int ORBIS_BT_ERROR_AVCTP_OPEN_NO_L2C = 0x802f0601; // 2150565377 +constexpr int ORBIS_BT_ERROR_AVCTP_READ_NO_VOLUME = 0x802f0608; // 2150565384 +constexpr int ORBIS_BT_ERROR_AVCTP_SEND_BUSY = 0x802f0605; // 2150565381 +constexpr int ORBIS_BT_ERROR_AVCTP_SEND_NO_L2C = 0x802f0603; // 2150565379 +constexpr int ORBIS_BT_ERROR_AVCTP_SEND_NO_PRESS = 0x802f0606; // 2150565382 +constexpr int ORBIS_BT_ERROR_AVCTP_SEND_NO_RELEASE = 0x802f0607; // 2150565383 +constexpr int ORBIS_BT_ERROR_AVCTP_SEND_NOT_RUBY = 0x802f0609; // 2150565385 +constexpr int ORBIS_BT_ERROR_AVDTP_CLOSE_BAD_SERV = 0x802f0502; // 2150565122 +constexpr int ORBIS_BT_ERROR_AVDTP_CLOSE_BAD_STATE = 0x802f0503; // 2150565123 +constexpr int ORBIS_BT_ERROR_AVDTP_OPEN_NO_L2C = 0x802f0501; // 2150565121 +constexpr int ORBIS_BT_ERROR_AVDTP_RECONF_BAD_SERV = 0x802f0509; // 2150565129 +constexpr int ORBIS_BT_ERROR_AVDTP_RECONF_BAD_STATE = 0x802f050a; // 2150565130 +constexpr int ORBIS_BT_ERROR_AVDTP_SEND_BAD_STATE = 0x802f0508; // 2150565128 +constexpr int ORBIS_BT_ERROR_AVDTP_START_BAD_SERV = 0x802f0504; // 2150565124 +constexpr int ORBIS_BT_ERROR_AVDTP_START_BAD_STATE = 0x802f0505; // 2150565125 +constexpr int ORBIS_BT_ERROR_AVDTP_STOP_BAD_SERV = 0x802f0506; // 2150565126 +constexpr int ORBIS_BT_ERROR_AVDTP_STOP_BAD_STATE = 0x802f0507; // 2150565127 +constexpr int ORBIS_BT_ERROR_AVRCP_INVALID_PLAY_STATUS = 0x802f1202; // 2150568450 +constexpr int ORBIS_BT_ERROR_AVRCP_TOO_LONG_TITLE = 0x802f1201; // 2150568449 +constexpr int ORBIS_BT_ERROR_CB_NOT_REGISTERED = 0x802f0c03; // 2150566915 +constexpr int ORBIS_BT_ERROR_CB_OVERFLOW = 0x802f0c04; // 2150566916 +constexpr int ORBIS_BT_ERROR_CB_TOO_MANY = 0x802f0c02; // 2150566914 +constexpr int ORBIS_BT_ERROR_CONF_BT_INACTIVE = 0x802f1503; // 2150569219 +constexpr int ORBIS_BT_ERROR_CONF_CANT_DISABLE_FUNCTION = 0x802f1508; // 2150569224 +constexpr int ORBIS_BT_ERROR_CONF_CANT_ENABLE_FUNCTION = 0x802f1507; // 2150569223 +constexpr int ORBIS_BT_ERROR_CONF_CANT_ENTER = 0x802f1520; // 2150569248 +constexpr int ORBIS_BT_ERROR_CONF_CARD_NOT_FOUND = 0x802f1505; // 2150569221 +constexpr int ORBIS_BT_ERROR_CONF_DISABLE_SUBINTR = 0x802f150c; // 2150569228 +constexpr int ORBIS_BT_ERROR_CONF_ENABLE_SUBINTR = 0x802f150b; // 2150569227 +constexpr int ORBIS_BT_ERROR_CONF_FUNCTION_NOT_FOUND = 0x802f1506; // 2150569222 +constexpr int ORBIS_BT_ERROR_CONF_INVALID_VALUE = 0x802f1502; // 2150569218 +constexpr int ORBIS_BT_ERROR_CONF_NOT_READY = 0x802f1501; // 2150569217 +constexpr int ORBIS_BT_ERROR_CONF_OFF_TIMEOUT = 0x802f150e; // 2150569230 +constexpr int ORBIS_BT_ERROR_CONF_ON_TIMEOUT = 0x802f150d; // 2150569229 +constexpr int ORBIS_BT_ERROR_CONF_REGISTER_SUBINTR_HANDLER = 0x802f1509; // 2150569225 +constexpr int ORBIS_BT_ERROR_CONF_RELEASE_SUBINTR_HANDLER = 0x802f150a; // 2150569226 +constexpr int ORBIS_BT_ERROR_CONF_SUSPEND_TIMEOUT = 0x802f150f; // 2150569231 +constexpr int ORBIS_BT_ERROR_CONF_TIMEOUT = 0x802f1504; // 2150569220 +constexpr int ORBIS_BT_ERROR_CONNECT_START_BUSY = 0x802f0204; // 2150564356 +constexpr int ORBIS_BT_ERROR_CONNECT_START_CONNECTED = 0x802f020a; // 2150564362 +constexpr int ORBIS_BT_ERROR_CONNECT_START_DELETING = 0x802f020e; // 2150564366 +constexpr int ORBIS_BT_ERROR_CONNECT_START_IS_LE = 0x802f2202; // 2150572546 +constexpr int ORBIS_BT_ERROR_CONNECT_START_NO_REG = 0x802f0202; // 2150564354 +constexpr int ORBIS_BT_ERROR_CONNECT_START_NOT_CONNECTABLE = 0x802f0203; // 2150564355 +constexpr int ORBIS_BT_ERROR_CONNECT_START_REG_FULL = 0x802f0209; // 2150564361 +constexpr int ORBIS_BT_ERROR_CONNECT_START_TOO_MANY = 0x802f020d; // 2150564365 +constexpr int ORBIS_BT_ERROR_COPYIN_FAILED = 0x802f0b09; // 2150566665 +constexpr int ORBIS_BT_ERROR_COPYOUT_FAILED = 0x802f0b0a; // 2150566666 +constexpr int ORBIS_BT_ERROR_DISCONNECT_START_NOT_CONNECTED = 0x802f0205; // 2150564357 +constexpr int ORBIS_BT_ERROR_GATT_BUSY = 0x802f2403; // 2150573059 +constexpr int ORBIS_BT_ERROR_GATT_DISCONNECT = 0x802f240a; // 2150573066 +constexpr int ORBIS_BT_ERROR_GATT_ENTER = 0x802f240c; // 2150573068 +constexpr int ORBIS_BT_ERROR_GATT_INVALID_FLAGS = 0x802f2405; // 2150573061 +constexpr int ORBIS_BT_ERROR_GATT_INVALID_HANDLE = 0x802f2404; // 2150573060 +constexpr int ORBIS_BT_ERROR_GATT_INVALID_NO = 0x802f2401; // 2150573057 +constexpr int ORBIS_BT_ERROR_GATT_INVALID_SIZE = 0x802f2406; // 2150573062 +constexpr int ORBIS_BT_ERROR_GATT_NOT_CONNECTED = 0x802f2402; // 2150573058 +constexpr int ORBIS_BT_ERROR_GATT_NOT_LE = 0x802f2407; // 2150573063 +constexpr int ORBIS_BT_ERROR_GATT_NOT_YET = 0x802f2409; // 2150573065 +constexpr int ORBIS_BT_ERROR_GATT_TOO_BIG_BUFFER = 0x802f240d; // 2150573069 +constexpr int ORBIS_BT_ERROR_GATT_TOO_BIG_RECORD = 0x802f2408; // 2150573064 +constexpr int ORBIS_BT_ERROR_GATT_TSLEEP = 0x802f240b; // 2150573067 +constexpr int ORBIS_BT_ERROR_GET_DEBUG_INFO_INVALID_ARGUMENT = 0x802f2105; // 2150572293 +constexpr int ORBIS_BT_ERROR_GET_DEBUG_INFO_INVALID_REQUEST = 0x802f2101; // 2150572289 +constexpr int ORBIS_BT_ERROR_GET_DEBUG_INFO_INVALID_SIZE = 0x802f2103; // 2150572291 +constexpr int ORBIS_BT_ERROR_GET_DEBUG_INFO_INVALID_STATE = 0x802f2107; // 2150572295 +constexpr int ORBIS_BT_ERROR_GET_DEBUG_INFO_NOT_CONNECTED = 0x802f2109; // 2150572297 +constexpr int ORBIS_BT_ERROR_GET_JACK_STATUS_NOT_CONNECTED = 0x802f3301; // 2150576897 +constexpr int ORBIS_BT_ERROR_GET_NAME_NO_DEVICE = 0x802f0c01; // 2150566913 +constexpr int ORBIS_BT_ERROR_HCI_TX_OVERFLOW = 0x802f0b02; // 2150566658 +constexpr int ORBIS_BT_ERROR_HID_CLOSE_NO_L2C = 0x802f0902; // 2150566146 +constexpr int ORBIS_BT_ERROR_HID_INVALID_BUFFER_ADDRESS = 0x802f0907; // 2150566151 +constexpr int ORBIS_BT_ERROR_HID_INVALID_IDLE = 0x802f0909; // 2150566153 +constexpr int ORBIS_BT_ERROR_HID_INVALID_LENGTH = 0x802f090d; // 2150566157 +constexpr int ORBIS_BT_ERROR_HID_INVALID_PROTOCOL = 0x802f0908; // 2150566152 +constexpr int ORBIS_BT_ERROR_HID_INVALID_REPORT_ID = 0x802f090e; // 2150566158 +constexpr int ORBIS_BT_ERROR_HID_INVALID_REQUEST_TYPE = 0x802f0906; // 2150566150 +constexpr int ORBIS_BT_ERROR_HID_IS_LE = 0x802f2204; // 2150572548 +constexpr int ORBIS_BT_ERROR_HID_NO_CAP = 0x802f0905; // 2150566149 +constexpr int ORBIS_BT_ERROR_HID_NOT_CONNECTED = 0x802f0904; // 2150566148 +constexpr int ORBIS_BT_ERROR_HID_NOT_YET = 0x802f090c; // 2150566156 +constexpr int ORBIS_BT_ERROR_HID_OPEN_NO_L2C = 0x802f0901; // 2150566145 +constexpr int ORBIS_BT_ERROR_HID_OVERWRITE_REQ = 0x802f090f; // 2150566159 +constexpr int ORBIS_BT_ERROR_HID_RECV_INVALID_LENGTH = 0x802f0e02; // 2150567426 +constexpr int ORBIS_BT_ERROR_HID_RECV_NOT_CONNECTED = 0x802f0e01; // 2150567425 +constexpr int ORBIS_BT_ERROR_HID_SEND_NO_L2C = 0x802f0903; // 2150566147 +constexpr int ORBIS_BT_ERROR_INQUIRY_START_BUSY = 0x802f0201; // 2150564353 +constexpr int ORBIS_BT_ERROR_JEDI_SNIFF_NOT_CONNECTED = 0x802f3601; // 2150577665 +constexpr int ORBIS_BT_ERROR_JEDI_SNIFF_NOT_JEDI = 0x802f3602; // 2150577666 +constexpr int ORBIS_BT_ERROR_JEDI_VOLUME_GAIN_NOT_CONNECTED = 0x802f3501; // 2150577409 +constexpr int ORBIS_BT_ERROR_JUMBO_UNLOCK_NOT_OWNER = 0x802f0b01; // 2150566657 +constexpr int ORBIS_BT_ERROR_KPROC_CREATE = 0x802f2002; // 2150572034 +constexpr int ORBIS_BT_ERROR_LE_CREATE_CONNECTION_BUSY = 0x802f290d; // 2150574349 +constexpr int ORBIS_BT_ERROR_LE_CREATE_CONNECTION_CONNECTED = 0x802f290b; // 2150574347 +constexpr int ORBIS_BT_ERROR_LE_CREATE_CONNECTION_FULL = 0x802f290c; // 2150574348 +constexpr int ORBIS_BT_ERROR_LE_CREATE_CONNECTION_INVALID_INTERVAL_MAX = 0x802f2906; // 2150574342 +constexpr int ORBIS_BT_ERROR_LE_CREATE_CONNECTION_INVALID_INTERVAL_MIN = 0x802f2905; // 2150574341 +constexpr int ORBIS_BT_ERROR_LE_CREATE_CONNECTION_INVALID_LATENCY = 0x802f2907; // 2150574343 +constexpr int ORBIS_BT_ERROR_LE_CREATE_CONNECTION_INVALID_OWN_ADDRESS_TYPE = + 0x802f2904; // 2150574340 +constexpr int ORBIS_BT_ERROR_LE_CREATE_CONNECTION_INVALID_PEER_ADDRESS = 0x802f2903; // 2150574339 +constexpr int ORBIS_BT_ERROR_LE_CREATE_CONNECTION_INVALID_SCAN_INTERVAL = 0x802f2901; // 2150574337 +constexpr int ORBIS_BT_ERROR_LE_CREATE_CONNECTION_INVALID_SCAN_WINDOW = 0x802f2902; // 2150574338 +constexpr int ORBIS_BT_ERROR_LE_CREATE_CONNECTION_INVALID_TIMEOUT = 0x802f2908; // 2150574344 +constexpr int ORBIS_BT_ERROR_LE_CREATE_CONNECTION_REG_ERROR = 0x802f290a; // 2150574346 +constexpr int ORBIS_BT_ERROR_LE_CREATE_CONNECTION_REG_FULL = 0x802f2909; // 2150574345 +constexpr int ORBIS_BT_ERROR_LE_GET_ADVERTISING_NOT_FOUND = 0x802f2801; // 2150574081 +constexpr int ORBIS_BT_ERROR_LE_NOT_SUPPORTED = 0x802f2b01; // 2150574849 +constexpr int ORBIS_BT_ERROR_LE_SET_ADVERTISING_INVALID_DIRECT_ADDRESS = 0x802f2607; // 2150573575 +constexpr int ORBIS_BT_ERROR_LE_SET_ADVERTISING_INVALID_DIRECT_ADDRESS_TYPE = + 0x802f2606; // 2150573574 +constexpr int ORBIS_BT_ERROR_LE_SET_ADVERTISING_INVALID_INTERVAL_MAX = 0x802f2604; // 2150573572 +constexpr int ORBIS_BT_ERROR_LE_SET_ADVERTISING_INVALID_INTERVAL_MIN = 0x802f2603; // 2150573571 +constexpr int ORBIS_BT_ERROR_LE_SET_ADVERTISING_INVALID_LENGTH = 0x802f2602; // 2150573570 +constexpr int ORBIS_BT_ERROR_LE_SET_ADVERTISING_INVALID_OWN_ADDRESS_TYPE = 0x802f2605; // 2150573573 +constexpr int ORBIS_BT_ERROR_LE_SET_ADVERTISING_INVALID_REQ = 0x802f2601; // 2150573569 +constexpr int ORBIS_BT_ERROR_LE_SET_SCAN_INVALID_INTERVAL = 0x802f2703; // 2150573827 +constexpr int ORBIS_BT_ERROR_LE_SET_SCAN_INVALID_LENGTH = 0x802f2702; // 2150573826 +constexpr int ORBIS_BT_ERROR_LE_SET_SCAN_INVALID_OWN_ADDRESS_TYPE = 0x802f2705; // 2150573829 +constexpr int ORBIS_BT_ERROR_LE_SET_SCAN_INVALID_REQ = 0x802f2701; // 2150573825 +constexpr int ORBIS_BT_ERROR_LE_SET_SCAN_INVALID_WINDOW = 0x802f2704; // 2150573828 +constexpr int ORBIS_BT_ERROR_NOT_READY = 0x802f3201; // 2150576641 +constexpr int ORBIS_BT_ERROR_NOT_SUPPORTED_DEVICE = 0x802f3403; // 2150577155 +constexpr int ORBIS_BT_ERROR_NOTIMP = 0x802f2001; // 2150572033 +constexpr int ORBIS_BT_ERROR_PAIRING_OOB_CAN_NOT_DISCONNECT = 0x802f3103; // 2150576387 +constexpr int ORBIS_BT_ERROR_PAIRING_OOB_FULL = 0x802f3102; // 2150576386 +constexpr int ORBIS_BT_ERROR_PAIRING_OOB_INTERNAL_ERROR = 0x802f3104; // 2150576388 +constexpr int ORBIS_BT_ERROR_PAIRING_OOB_TIMEOUT = 0x802f3101; // 2150576385 +constexpr int ORBIS_BT_ERROR_PIN_INVALID_LENGTH = 0x802f0206; // 2150564358 +constexpr int ORBIS_BT_ERROR_PIN_IS_LE = 0x802f2201; // 2150572545 +constexpr int ORBIS_BT_ERROR_REG_CANNOT_LOAD = 0x802f010a; // 2150564106 +constexpr int ORBIS_BT_ERROR_REG_CANNOT_OPEN = 0x802f010b; // 2150564107 +constexpr int ORBIS_BT_ERROR_REG_CANNOT_READ = 0x802f010c; // 2150564108 +constexpr int ORBIS_BT_ERROR_REG_CANNOT_WRITE = 0x802f010d; // 2150564109 +constexpr int ORBIS_BT_ERROR_REG_DELETE_CONNECTING = 0x802f0109; // 2150564105 +constexpr int ORBIS_BT_ERROR_REG_DELETE_NO_ENTRY = 0x802f0102; // 2150564098 +constexpr int ORBIS_BT_ERROR_REG_GET_HID_DESC_NO_REG = 0x802f0107; // 2150564103 +constexpr int ORBIS_BT_ERROR_REG_GET_HID_DESC_TOO_SHORT = 0x802f0108; // 2150564104 +constexpr int ORBIS_BT_ERROR_REG_NOT_READY = 0x802f0101; // 2150564097 +constexpr int ORBIS_BT_ERROR_REG_SET_HID_DESC_BAD_ARG = 0x802f0105; // 2150564101 +constexpr int ORBIS_BT_ERROR_REG_SET_HID_DESC_NO_REG = 0x802f0106; // 2150564102 +constexpr int ORBIS_BT_ERROR_REG_UPDATE_CANNOT_SAVE = 0x802f0103; // 2150564099 +constexpr int ORBIS_BT_ERROR_SDIO_DISABLE_FUNCTION = 0x802f2009; // 2150572041 +constexpr int ORBIS_BT_ERROR_SDIO_ENABLE_FUNCTION = 0x802f2008; // 2150572040 +constexpr int ORBIS_BT_ERROR_SDIO_GET_FUNCTION = 0x802f2003; // 2150572035 +constexpr int ORBIS_BT_ERROR_SDIO_LOCK = 0x802f2006; // 2150572038 +constexpr int ORBIS_BT_ERROR_SDIO_READ_DIR = 0x802f200c; // 2150572044 +constexpr int ORBIS_BT_ERROR_SDIO_READ_FIX = 0x802f200e; // 2150572046 +constexpr int ORBIS_BT_ERROR_SDIO_REGISTER_INTR_HANDLER = 0x802f2004; // 2150572036 +constexpr int ORBIS_BT_ERROR_SDIO_SET_BLOCK_LEN = 0x802f200a; // 2150572042 +constexpr int ORBIS_BT_ERROR_SDIO_SET_BUS_SPEED = 0x802f200b; // 2150572043 +constexpr int ORBIS_BT_ERROR_SDIO_UNLOCK = 0x802f2007; // 2150572039 +constexpr int ORBIS_BT_ERROR_SDIO_UNREGISTER_INTR_HANDLER = 0x802f2005; // 2150572037 +constexpr int ORBIS_BT_ERROR_SDIO_WRITE_DIR = 0x802f200d; // 2150572045 +constexpr int ORBIS_BT_ERROR_SDIO_WRITE_FIX = 0x802f200f; // 2150572047 +constexpr int ORBIS_BT_ERROR_SDP_OPEN_NO_L2C = 0x802f0208; // 2150564360 +constexpr int ORBIS_BT_ERROR_SET_DEBUG_INFO_INVALID_ARGUMENT = 0x802f2106; // 2150572294 +constexpr int ORBIS_BT_ERROR_SET_DEBUG_INFO_INVALID_REQUEST = 0x802f2102; // 2150572290 +constexpr int ORBIS_BT_ERROR_SET_DEBUG_INFO_INVALID_SIZE = 0x802f2104; // 2150572292 +constexpr int ORBIS_BT_ERROR_SET_DEBUG_INFO_INVALID_STATE = 0x802f2108; // 2150572296 +constexpr int ORBIS_BT_ERROR_SET_DEBUG_INFO_NOT_CONNECTED = 0x802f210a; // 2150572298 +constexpr int ORBIS_BT_ERROR_SM_INVALID_CONFIRM_REPLY = 0x802f2505; // 2150573317 +constexpr int ORBIS_BT_ERROR_SM_INVALID_KEY_LENGTH = 0x802f2501; // 2150573313 +constexpr int ORBIS_BT_ERROR_SM_NO_REQ = 0x802f2503; // 2150573315 +constexpr int ORBIS_BT_ERROR_SM_NOT_DIGIT = 0x802f2502; // 2150573314 +constexpr int ORBIS_BT_ERROR_SM_NOT_NEEDED_PIN = 0x802f2504; // 2150573316 +constexpr int ORBIS_BT_ERROR_TIMER_CANCEL_BAD_ID = 0x802f0b05; // 2150566661 +constexpr int ORBIS_BT_ERROR_TIMER_CANCEL_NOT_INITIALIZED = 0x802f0b06; // 2150566662 +constexpr int ORBIS_BT_ERROR_TIMER_SET_NO_SPACE = 0x802f0b08; // 2150566664 +constexpr int ORBIS_BT_ERROR_TIMER_SET_NOT_INITIALIZED = 0x802f0b07; // 2150566663 +constexpr int ORBIS_BT_ERROR_TOO_MANY_CONNECTION = 0x802f3401; // 2150577153 +constexpr int ORBIS_BT_ERROR_TOO_MANY_HID = 0x802f3402; // 2150577154 +constexpr int ORBIS_BT_ERROR_TSLEEP = 0x802f2010; // 2150572048 +constexpr int ORBIS_BT_ERROR_USER_CONFIRM_NOT_CONNECTED = 0x802f0207; // 2150564359 + +// CAMERA +constexpr int ORBIS_CAMERA_ERROR_ALREADY_INIT = 0x802e0001; // 2150498305 +constexpr int ORBIS_CAMERA_ERROR_ALREADY_OPEN = 0x802e0003; // 2150498307 +constexpr int ORBIS_CAMERA_ERROR_ALREADY_READ = 0x802e000f; // 2150498319 +constexpr int ORBIS_CAMERA_ERROR_ALREADY_START = 0x802e0005; // 2150498309 +constexpr int ORBIS_CAMERA_ERROR_ATTRIBUTE_UNKNOWN = 0x802e000b; // 2150498315 +constexpr int ORBIS_CAMERA_ERROR_BAD_FRAMERATE = 0x802e0009; // 2150498313 +constexpr int ORBIS_CAMERA_ERROR_BUSY = 0x802e000c; // 2150498316 +constexpr int ORBIS_CAMERA_ERROR_COPYIN_FAILED = 0x802e00fd; // 2150498557 +constexpr int ORBIS_CAMERA_ERROR_COPYOUT_FAILED = 0x802e00fc; // 2150498556 +constexpr int ORBIS_CAMERA_ERROR_FATAL = 0x802e00ff; // 2150498559 +constexpr int ORBIS_CAMERA_ERROR_FORMAT_UNKNOWN = 0x802e0007; // 2150498311 +constexpr int ORBIS_CAMERA_ERROR_INVALID_CONFIG = 0x802e0013; // 2150498323 +constexpr int ORBIS_CAMERA_ERROR_KPROC_CREATE = 0x802e00fe; // 2150498558 +constexpr int ORBIS_CAMERA_ERROR_MAX_HANDLE = 0x802e0014; // 2150498324 +constexpr int ORBIS_CAMERA_ERROR_MAX_PROCESS = 0x802e00fb; // 2150498555 +constexpr int ORBIS_CAMERA_ERROR_NOT_CONNECTED = 0x802e0010; // 2150498320 +constexpr int ORBIS_CAMERA_ERROR_NOT_INIT = 0x802e0002; // 2150498306 +constexpr int ORBIS_CAMERA_ERROR_NOT_OPEN = 0x802e0004; // 2150498308 +constexpr int ORBIS_CAMERA_ERROR_NOT_START = 0x802e0006; // 2150498310 +constexpr int ORBIS_CAMERA_ERROR_NOT_SUPPORTED = 0x802e0011; // 2150498321 +constexpr int ORBIS_CAMERA_ERROR_PARAM = 0x802e0000; // 2150498304 +constexpr int ORBIS_CAMERA_ERROR_RESOLUTION_UNKNOWN = 0x802e0008; // 2150498312 +constexpr int ORBIS_CAMERA_ERROR_TIMEOUT = 0x802e000a; // 2150498314 +constexpr int ORBIS_CAMERA_ERROR_UNKNOWN_CONFIG = 0x802e000d; // 2150498317 + +// CES +constexpr int ORBIS_CES_ERROR_DST_BUFFER_END = 0x805c0031; // 2153513009 +constexpr int ORBIS_CES_ERROR_ILLEGAL_CODE = 0x805c0015; // 2153512981 +constexpr int ORBIS_CES_ERROR_INVALID_DST_BUFFER = 0x805c0030; // 2153513008 +constexpr int ORBIS_CES_ERROR_INVALID_ENCODE = 0x805c0014; // 2153512980 +constexpr int ORBIS_CES_ERROR_INVALID_PARAMETER = 0x805c0001; // 2153512961 +constexpr int ORBIS_CES_ERROR_INVALID_PROFILE = 0x805c0004; // 2153512964 +constexpr int ORBIS_CES_ERROR_INVALID_SRC_BUFFER = 0x805c0010; // 2153512976 +constexpr int ORBIS_CES_ERROR_OUT_OF_CODE_RANGE = 0x805c0024; // 2153512996 +constexpr int ORBIS_CES_ERROR_SRC_BUFFER_END = 0x805c0011; // 2153512977 +constexpr int ORBIS_CES_ERROR_UNASSIGNED_CODE = 0x805c0020; // 2153512992 + +// COMPOSITOR +constexpr int ORBIS_COMPOSITOR_ERROR_ALLOCATE_APPID = 0x80d40008; // 2161377288 +constexpr int ORBIS_COMPOSITOR_ERROR_ALREADY_INITIALIZED = 0x80d40003; // 2161377283 +constexpr int ORBIS_COMPOSITOR_ERROR_CONTROL_FETCH_MISS = 0x80d40001; // 2161377281 +constexpr int ORBIS_COMPOSITOR_ERROR_EVFLAG_OPEN = 0x80d40007; // 2161377287 +constexpr int ORBIS_COMPOSITOR_ERROR_INVALID_PARAMETER = 0x80d40006; // 2161377286 +constexpr int ORBIS_COMPOSITOR_ERROR_MEMORY_ALLOCATION = 0x80d40005; // 2161377285 +constexpr int ORBIS_COMPOSITOR_ERROR_MISC = 0x80d400ff; // 2161377535 +constexpr int ORBIS_COMPOSITOR_ERROR_MULTI_EVFLAG_OPEN = 0x80d40011; // 2161377297 +constexpr int ORBIS_COMPOSITOR_ERROR_NOT_INITIALIZED = 0x80d40010; // 2161377296 +constexpr int ORBIS_COMPOSITOR_ERROR_REQUEST_DENIED = 0x80d40009; // 2161377289 +constexpr int ORBIS_COMPOSITOR_ERROR_SERVER_COMUNICATION = 0x80d40004; // 2161377284 +constexpr int ORBIS_COMPOSITOR_ERROR_WAIT_TIMEOUT = 0x80d40002; // 2161377282 +constexpr int ORBIS_COMPOSITOR_SERVER_ERROR_DIRECT_MEMORY_ALLOCATION_SYSTEM = + 0x80d80001; // 2161639425 +constexpr int ORBIS_COMPOSITOR_SERVER_ERROR_DIRECT_MEMORY_ALLOCATION_VIDEO = + 0x80d80002; // 2161639426 +constexpr int ORBIS_COMPOSITOR_SERVER_ERROR_GNM_DRIVER_ADD_EQUEUE = 0x80d80008; // 2161639432 +constexpr int ORBIS_COMPOSITOR_SERVER_ERROR_GNM_DRIVER_CLOSE = 0x80d80007; // 2161639431 +constexpr int ORBIS_COMPOSITOR_SERVER_ERROR_GNM_DRIVER_GET_CLIENT_NUMBER = 0x80d80009; // 2161639433 +constexpr int ORBIS_COMPOSITOR_SERVER_ERROR_GNM_DRIVER_OPEN = 0x80d80006; // 2161639430 +constexpr int ORBIS_COMPOSITOR_SERVER_ERROR_LOAD_CAMERA = 0x80d80010; // 2161639440 +constexpr int ORBIS_COMPOSITOR_SERVER_ERROR_LOAD_GNM_DRIVER_SYS = 0x80d80004; // 2161639428 +constexpr int ORBIS_COMPOSITOR_SERVER_ERROR_LOAD_IPMI = 0x80d8000a; // 2161639434 +constexpr int ORBIS_COMPOSITOR_SERVER_ERROR_LOAD_VIDEO_OUT = 0x80d80005; // 2161639429 +constexpr int ORBIS_COMPOSITOR_SERVER_ERROR_VIDEO_OUT_OPEN = 0x80d80003; // 2161639427 + +// COREDUMP +constexpr int ORBIS_COREDUMP_ERROR_ALREADY_REGISTERED = 0x81180002; // 2165833730 +constexpr int ORBIS_COREDUMP_ERROR_NOT_IN_COREDUMP_HANDLER = 0x81180003; // 2165833731 +constexpr int ORBIS_COREDUMP_ERROR_NOT_REGISTERED = 0x81180001; // 2165833729 +constexpr int ORBIS_COREDUMP_ERROR_PARAM = 0x81180000; // 2165833728 + +// CTRLP +constexpr int ORBIS_CTRLP_ERROR_BUSY = 0x80a20007; // 2158100487 +constexpr int ORBIS_CTRLP_ERROR_COPYIN_FAILED = 0x80a20009; // 2158100489 +constexpr int ORBIS_CTRLP_ERROR_COPYOUT_FAILED = 0x80a20008; // 2158100488 +constexpr int ORBIS_CTRLP_ERROR_ILLEGAL_PARAMETER_VALUE = 0x80a20004; // 2158100484 +constexpr int ORBIS_CTRLP_ERROR_INVALID_ARGUMENT = 0x80a20001; // 2158100481 +constexpr int ORBIS_CTRLP_ERROR_NOT_CTRLPDATA = 0x80a20006; // 2158100486 +constexpr int ORBIS_CTRLP_ERROR_NOT_STARTED = 0x80a20005; // 2158100485 +constexpr int ORBIS_CTRLP_ERROR_NOT_SUPPORTED = 0x80a20002; // 2158100482 +constexpr int ORBIS_CTRLP_ERROR_RESOURCE_SHORTAGE = 0x80a20003; // 2158100483 + +// DBG +constexpr int ORBIS_DBG_ERROR_BUFFER_FULL = 0x81150003; // 2165637123 +constexpr int ORBIS_DBG_ERROR_INVALID_ARG = 0x81150001; // 2165637121 +constexpr int ORBIS_DBG_ERROR_UNKNOWN = 0x81150002; // 2165637122 +constexpr int ORBIS_DBG_KEYBOARD_ERROR_ALREADY_OPENED = 0x80da0004; // 2161770500 +constexpr int ORBIS_DBG_KEYBOARD_ERROR_FATAL = 0x80da00ff; // 2161770751 +constexpr int ORBIS_DBG_KEYBOARD_ERROR_INVALID_ARG = 0x80da0001; // 2161770497 +constexpr int ORBIS_DBG_KEYBOARD_ERROR_INVALID_HANDLE = 0x80da0003; // 2161770499 +constexpr int ORBIS_DBG_KEYBOARD_ERROR_INVALID_PORT = 0x80da0002; // 2161770498 +constexpr int ORBIS_DBG_KEYBOARD_ERROR_NOT_INITIALIZED = 0x80da0005; // 2161770501 + +// DEPTH +constexpr int ORBIS_DEPTH_ERROR_CALIBRATION_IS_NECESSARY = 0x80bbff00; // 2159804160 +constexpr int ORBIS_DEPTH_ERROR_COULD_NOT_CREATED_INSTANCE = 0x80bb0101; // 2159739137 +constexpr int ORBIS_DEPTH_ERROR_FATAL = 0x80bbffff; // 2159804415 +constexpr int ORBIS_DEPTH_ERROR_INVALID_ACCESS = 0x80bb0010; // 2159738896 +constexpr int ORBIS_DEPTH_ERROR_INVALID_ASPECT = 0x80bb0007; // 2159738887 +constexpr int ORBIS_DEPTH_ERROR_INVALID_CAMERA_TYPE = 0x80bb000c; // 2159738892 +constexpr int ORBIS_DEPTH_ERROR_INVALID_DEPTH_MAP_GENERATOR_TYPE = 0x80bb0012; // 2159738898 +constexpr int ORBIS_DEPTH_ERROR_INVALID_DEPTH_MAP_SIZE_TYPE = 0x80bb0011; // 2159738897 +constexpr int ORBIS_DEPTH_ERROR_INVALID_EXECUTION_MODE = 0x80bb0002; // 2159738882 +constexpr int ORBIS_DEPTH_ERROR_INVALID_HANDLE = 0x80bb0005; // 2159738885 +constexpr int ORBIS_DEPTH_ERROR_INVALID_IMAGE_TYPE = 0x80bb0004; // 2159738884 +constexpr int ORBIS_DEPTH_ERROR_INVALID_MEMORY_ALIGNMENT = 0x80bb0006; // 2159738886 +constexpr int ORBIS_DEPTH_ERROR_INVALID_PARAMETER = 0x80bb0000; // 2159738880 +constexpr int ORBIS_DEPTH_ERROR_INVALID_PARAMETER_RANGE = 0x80bb000d; // 2159738893 +constexpr int ORBIS_DEPTH_ERROR_INVALID_PIXEL_FORMAT = 0x80bb0003; // 2159738883 +constexpr int ORBIS_DEPTH_ERROR_INVALID_POINTER_ADDRESS = 0x80bb000a; // 2159738890 +constexpr int ORBIS_DEPTH_ERROR_INVALID_PROCESSING_ORDER = 0x80bb000e; // 2159738894 +constexpr int ORBIS_DEPTH_ERROR_INVALID_RESERVED_PARAMETER = 0x80bb0009; // 2159738889 +constexpr int ORBIS_DEPTH_ERROR_INVALID_RESOLUTION_PARAMETER = 0x80bb000b; // 2159738891 +constexpr int ORBIS_DEPTH_ERROR_INVALID_SIZE_PARAMETER = 0x80bb0008; // 2159738888 +constexpr int ORBIS_DEPTH_ERROR_INVALID_TERMINATION = 0x80bb000f; // 2159738895 +constexpr int ORBIS_DEPTH_ERROR_INVALID_UPDATE_MODE = 0x80bb0001; // 2159738881 +constexpr int ORBIS_DEPTH_ERROR_NOT_ENOUGH_MEMORY = 0x80bb0100; // 2159739136 + +// DEVICE_SERVICE +constexpr int ORBIS_DEVICE_SERVICE_ERROR_BUS_OVER_MAX = 0x809b0085; // 2157641861 +constexpr int ORBIS_DEVICE_SERVICE_ERROR_DEVICE_OVER_MAX = 0x809b0084; // 2157641860 +constexpr int ORBIS_DEVICE_SERVICE_ERROR_DRIVER_OVER_MAX = 0x809b0083; // 2157641859 +constexpr int ORBIS_DEVICE_SERVICE_ERROR_INTERNAL = 0x809b00ff; // 2157641983 +constexpr int ORBIS_DEVICE_SERVICE_ERROR_INVALID_DEVICE_TYPE = 0x809b0002; // 2157641730 +constexpr int ORBIS_DEVICE_SERVICE_ERROR_INVALID_INDEX = 0x809b0003; // 2157641731 +constexpr int ORBIS_DEVICE_SERVICE_ERROR_INVALID_PARAM = 0x809b0080; // 2157641856 +constexpr int ORBIS_DEVICE_SERVICE_ERROR_INVALID_USER = 0x809b0001; // 2157641729 +constexpr int ORBIS_DEVICE_SERVICE_ERROR_MEMORY = 0x809b0004; // 2157641732 +constexpr int ORBIS_DEVICE_SERVICE_ERROR_PORT_OVER_MAX = 0x809b0086; // 2157641862 +constexpr int ORBIS_DEVICE_SERVICE_ERROR_USER_NOT_LOGIN = 0x809b0081; // 2157641857 +constexpr int ORBIS_DEVICE_SERVICE_ERROR_USER_OVER_MAX = 0x809b0082; // 2157641858 + +// DISC_MAP +constexpr int ORBIS_DISC_MAP_ERROR_FATAL = 0x811000ff; // 2165309695 +constexpr int ORBIS_DISC_MAP_ERROR_FILE_NOT_FOUND = 0x81100003; // 2165309443 +constexpr int ORBIS_DISC_MAP_ERROR_INVALID_ARGUMENT = 0x81100001; // 2165309441 +constexpr int ORBIS_DISC_MAP_ERROR_LOCATION_NOT_MAPPED = 0x81100002; // 2165309442 +constexpr int ORBIS_DISC_MAP_ERROR_NO_BITMAP_INFO = 0x81100004; // 2165309444 + +// DISPLAY +constexpr int ORBIS_DISPLAY_ERROR_INVALID_HEAD = 0x80290000; // 2150170624 + +// DTS +constexpr int ORBIS_DTS_ENC_ERROR_INTERNAL_ERROR = 0x80fa0000; // 2163867648 +constexpr int ORBIS_DTS_ENC_ERROR_INVALID_BIT_RATE = 0x80fa0005; // 2163867653 +constexpr int ORBIS_DTS_ENC_ERROR_INVALID_HANDLE = 0x80fa0001; // 2163867649 +constexpr int ORBIS_DTS_ENC_ERROR_INVALID_INPUT_FORMAT = 0x80fa0006; // 2163867654 +constexpr int ORBIS_DTS_ENC_ERROR_INVALID_NUM_CHANNELS = 0x80fa0003; // 2163867651 +constexpr int ORBIS_DTS_ENC_ERROR_INVALID_OUTPUT_FORMAT = 0x80fa0007; // 2163867655 +constexpr int ORBIS_DTS_ENC_ERROR_INVALID_POINTER = 0x80fa0002; // 2163867650 +constexpr int ORBIS_DTS_ENC_ERROR_INVALID_SAMPLE_RATE = 0x80fa0004; // 2163867652 +constexpr int ORBIS_DTS_ENC_ERROR_NO_MORE_INSTANCES = 0x80fa0008; // 2163867656 +constexpr int ORBIS_DTS_ENC_ERROR_NOT_IN_ENCODING = 0x80fa0009; // 2163867657 + +// TABLE +constexpr int ORBIS_ERROR_TABLE_ERROR_INVALID_POINTER = 0x80f30000; // 2163408896 + +// FIBER +constexpr int ORBIS_FIBER_ERROR_ALIGNMENT = 0x80590002; // 2153316354 +constexpr int ORBIS_FIBER_ERROR_INVALID = 0x80590004; // 2153316356 +constexpr int ORBIS_FIBER_ERROR_NULL = 0x80590001; // 2153316353 +constexpr int ORBIS_FIBER_ERROR_PERMISSION = 0x80590005; // 2153316357 +constexpr int ORBIS_FIBER_ERROR_RANGE = 0x80590003; // 2153316355 +constexpr int ORBIS_FIBER_ERROR_STATE = 0x80590006; // 2153316358 + +// FIOS +constexpr int ORBIS_FIOS_ERROR_ACCESS = 0x80820013; // 2156003347 +constexpr int ORBIS_FIOS_ERROR_ALREADY_EXISTS = 0x80820023; // 2156003363 +constexpr int ORBIS_FIOS_ERROR_BAD_ALIGNMENT = 0x8082000d; // 2156003341 +constexpr int ORBIS_FIOS_ERROR_BAD_ARCHIVE = 0x8082001f; // 2156003359 +constexpr int ORBIS_FIOS_ERROR_BAD_DH = 0x8082000c; // 2156003340 +constexpr int ORBIS_FIOS_ERROR_BAD_FH = 0x8082000b; // 2156003339 +constexpr int ORBIS_FIOS_ERROR_BAD_FLAGS = 0x80820021; // 2156003361 +constexpr int ORBIS_FIOS_ERROR_BAD_INDEX = 0x8082001c; // 2156003356 +constexpr int ORBIS_FIOS_ERROR_BAD_IOVCNT = 0x80820009; // 2156003337 +constexpr int ORBIS_FIOS_ERROR_BAD_OFFSET = 0x80820007; // 2156003335 +constexpr int ORBIS_FIOS_ERROR_BAD_OP = 0x8082000a; // 2156003338 +constexpr int ORBIS_FIOS_ERROR_BAD_ORDER = 0x8082001b; // 2156003355 +constexpr int ORBIS_FIOS_ERROR_BAD_OVERLAY = 0x8082001a; // 2156003354 +constexpr int ORBIS_FIOS_ERROR_BAD_PATH = 0x80820005; // 2156003333 +constexpr int ORBIS_FIOS_ERROR_BAD_PTR = 0x80820006; // 2156003334 +constexpr int ORBIS_FIOS_ERROR_BAD_RESOLVE_TYPE = 0x80820020; // 2156003360 +constexpr int ORBIS_FIOS_ERROR_BAD_SIZE = 0x80820008; // 2156003336 +constexpr int ORBIS_FIOS_ERROR_BUSY = 0x8082001e; // 2156003358 +constexpr int ORBIS_FIOS_ERROR_CANCELLED = 0x80820012; // 2156003346 +constexpr int ORBIS_FIOS_ERROR_CANT_ALLOCATE_CHUNK = 0x80820004; // 2156003332 +constexpr int ORBIS_FIOS_ERROR_CANT_ALLOCATE_DH = 0x80820003; // 2156003331 +constexpr int ORBIS_FIOS_ERROR_CANT_ALLOCATE_FH = 0x80820002; // 2156003330 +constexpr int ORBIS_FIOS_ERROR_CANT_ALLOCATE_OP = 0x80820001; // 2156003329 +constexpr int ORBIS_FIOS_ERROR_DECOMPRESSION = 0x80820014; // 2156003348 +constexpr int ORBIS_FIOS_ERROR_EOF = 0x80820010; // 2156003344 +constexpr int ORBIS_FIOS_ERROR_EVENT_NOT_HANDLED = 0x8082001d; // 2156003357 +constexpr int ORBIS_FIOS_ERROR_MEDIA_GONE = 0x80820017; // 2156003351 +constexpr int ORBIS_FIOS_ERROR_NOT_A_DIRECTORY = 0x8082000f; // 2156003343 +constexpr int ORBIS_FIOS_ERROR_NOT_A_FILE = 0x8082000e; // 2156003342 +constexpr int ORBIS_FIOS_ERROR_PATH_TOO_LONG = 0x80820018; // 2156003352 +constexpr int ORBIS_FIOS_ERROR_READ_ONLY = 0x80820015; // 2156003349 +constexpr int ORBIS_FIOS_ERROR_TIMEOUT = 0x80820011; // 2156003345 +constexpr int ORBIS_FIOS_ERROR_TOO_MANY_OVERLAYS = 0x80820019; // 2156003353 +constexpr int ORBIS_FIOS_ERROR_UNIMPLEMENTED = 0x80820000; // 2156003328 +constexpr int ORBIS_FIOS_ERROR_UNKNOWN = 0x80820022; // 2156003362 +constexpr int ORBIS_FIOS_ERROR_WRITE_ONLY = 0x80820016; // 2156003350 + +// FONT +constexpr int ORBIS_FONT_ERROR_ALLOCATION_FAILED = 0x80460010; // 2152071184 +constexpr int ORBIS_FONT_ERROR_ALREADY_ATTACHED = 0x80460022; // 2152071202 +constexpr int ORBIS_FONT_ERROR_ALREADY_BOUND_RENDERER = 0x80460060; // 2152071264 +constexpr int ORBIS_FONT_ERROR_ALREADY_OPENED = 0x80460023; // 2152071203 +constexpr int ORBIS_FONT_ERROR_ALREADY_SPECIFIED = 0x80460021; // 2152071201 +constexpr int ORBIS_FONT_ERROR_FATAL = 0x80460001; // 2152071169 +constexpr int ORBIS_FONT_ERROR_FONT_CLOSE_FAILED = 0x80460037; // 2152071223 +constexpr int ORBIS_FONT_ERROR_FONT_OPEN_FAILED = 0x80460036; // 2152071222 +constexpr int ORBIS_FONT_ERROR_FONT_OPEN_MAX = 0x80460033; // 2152071219 +constexpr int ORBIS_FONT_ERROR_FS_OPEN_FAILED = 0x80460011; // 2152071185 +constexpr int ORBIS_FONT_ERROR_INVALID_FONT_HANDLE = 0x80460005; // 2152071173 +constexpr int ORBIS_FONT_ERROR_INVALID_GLYPH = 0x80460006; // 2152071174 +constexpr int ORBIS_FONT_ERROR_INVALID_LIBRARY = 0x80460004; // 2152071172 +constexpr int ORBIS_FONT_ERROR_INVALID_MEMORY = 0x80460003; // 2152071171 +constexpr int ORBIS_FONT_ERROR_INVALID_PARAMETER = 0x80460002; // 2152071170 +constexpr int ORBIS_FONT_ERROR_INVALID_RENDERER = 0x80460007; // 2152071175 +constexpr int ORBIS_FONT_ERROR_NO_SUPPORT_CODE = 0x80460041; // 2152071233 +constexpr int ORBIS_FONT_ERROR_NO_SUPPORT_FONTSET = 0x80460031; // 2152071217 +constexpr int ORBIS_FONT_ERROR_NO_SUPPORT_FORMAT = 0x80460019; // 2152071193 +constexpr int ORBIS_FONT_ERROR_NO_SUPPORT_FUNCTION = 0x80460020; // 2152071200 +constexpr int ORBIS_FONT_ERROR_NO_SUPPORT_GLYPH = 0x80460042; // 2152071234 +constexpr int ORBIS_FONT_ERROR_NO_SUPPORT_LIBRARY = 0x80460018; // 2152071192 +constexpr int ORBIS_FONT_ERROR_NO_SUPPORT_SURFACE = 0x80460050; // 2152071248 +constexpr int ORBIS_FONT_ERROR_NO_SUPPORT_TYPOGRAPHY = 0x80460040; // 2152071232 +constexpr int ORBIS_FONT_ERROR_NOT_ATTACHED_CACHE_BUFFER = 0x80460025; // 2152071205 +constexpr int ORBIS_FONT_ERROR_NOT_BOUND_RENDERER = 0x80460061; // 2152071265 +constexpr int ORBIS_FONT_ERROR_RENDERER_ALLOCATION_FAILED = 0x80460063; // 2152071267 +constexpr int ORBIS_FONT_ERROR_RENDERER_RENDER_FAILED = 0x80460065; // 2152071269 +constexpr int ORBIS_FONT_ERROR_UNSET_PARAMETER = 0x80460058; // 2152071256 + +// GC +constexpr int ORBIS_GC_ERROR_HARDWARE_IS_BUSY = 0x804c0012; // 2152464402 +constexpr int ORBIS_GC_ERROR_INVALID_COMPUTE_QUEUE = 0x804c000b; // 2152464395 +constexpr int ORBIS_GC_ERROR_INVALID_GPU_ADDR = 0x804c000e; // 2152464398 +constexpr int ORBIS_GC_ERROR_INVALID_MAP_RING_SIZE = 0x804c000c; // 2152464396 +constexpr int ORBIS_GC_ERROR_INVALID_MAP_VQUEUEID = 0x804c000d; // 2152464397 +constexpr int ORBIS_GC_ERROR_INVALID_SUBMIT_COUNTS = 0x804c000f; // 2152464399 +constexpr int ORBIS_GC_ERROR_INVALID_SUBMIT_OPCODE = 0x804c0010; // 2152464400 +constexpr int ORBIS_GC_ERROR_INVALID_SUBMIT_SIZE = 0x804c0011; // 2152464401 +constexpr int ORBIS_GC_ERROR_INVALID_VMID = 0x804c0004; // 2152464388 +constexpr int ORBIS_GC_ERROR_MAP_VIDEO_MEMORY_ERROR = 0x804c0008; // 2152464392 +constexpr int ORBIS_GC_ERROR_NO_GPU_VA_SPACE = 0x804c0005; // 2152464389 +constexpr int ORBIS_GC_ERROR_NO_VM_MAP = 0x804c0006; // 2152464390 +constexpr int ORBIS_GC_ERROR_OUT_OF_MEMORY = 0x804c0002; // 2152464386 +constexpr int ORBIS_GC_ERROR_OUT_OF_VIDEO_MEMORY = 0x804c0007; // 2152464391 +constexpr int ORBIS_GC_ERROR_OUT_OF_VMID = 0x804c0003; // 2152464387 +constexpr int ORBIS_GC_ERROR_OUT_OF_VMID0_VA_SPACE = 0x804c0009; // 2152464393 +constexpr int ORBIS_GC_ERROR_RESERVED_COMPUTE_QUEUE = 0x804c000a; // 2152464394 +constexpr int ORBIS_GC_ERROR_UNKNOWN = 0x804c0001; // 2152464385 +constexpr int ORBIS_GC_ERROR_UNKNOWN_PROCESS = 0x804c0013; // 2152464403 + +// GPU +constexpr int ORBIS_GPU_ADDRESS_ERROR_STATUS_INTERNAL_TILING = 0x80d30001; // 2161311745 +constexpr int ORBIS_GPU_ADDRESS_ERROR_STATUS_INVALID_ARGUMENT = 0x80d30000; // 2161311744 + +// HEAD_TRACKER +constexpr int ORBIS_HEAD_TRACKER_ERROR_ALREADY_INIT = 0x811b0001; // 2166030337 +constexpr int ORBIS_HEAD_TRACKER_ERROR_FACE_RECOG_DICT_NO_EXIST = 0x811b0010; // 2166030352 +constexpr int ORBIS_HEAD_TRACKER_ERROR_FATAL = 0x811b00ff; // 2166030591 +constexpr int ORBIS_HEAD_TRACKER_ERROR_FLEXIBLE_MEMORY_NOT_ENOUGH = 0x811b0009; // 2166030345 +constexpr int ORBIS_HEAD_TRACKER_ERROR_NOMEM = 0x811b0005; // 2166030341 +constexpr int ORBIS_HEAD_TRACKER_ERROR_NOT_CAMERA_CONNECTED = 0x811b0003; // 2166030339 +constexpr int ORBIS_HEAD_TRACKER_ERROR_NOT_INIT = 0x811b0002; // 2166030338 +constexpr int ORBIS_HEAD_TRACKER_ERROR_NOT_SUPPORTED = 0x811b0004; // 2166030340 +constexpr int ORBIS_HEAD_TRACKER_ERROR_OTHER_PROCESS_RUNNING = 0x811b0006; // 2166030342 +constexpr int ORBIS_HEAD_TRACKER_ERROR_PARAM = 0x811b0000; // 2166030336 +constexpr int ORBIS_HEAD_TRACKER_ERROR_SYSTEM_SHARED_MEMORY_NOT_ENOUGH = 0x811b0007; // 2166030343 +constexpr int ORBIS_HEAD_TRACKER_ERROR_TRACKING_INSTANCE_NUMBER_FULL = 0x811b0011; // 2166030353 +constexpr int ORBIS_HEAD_TRACKER_ERROR_TRACKING_INSTANCE_NUMBER_ZERO = 0x811b0012; // 2166030354 +constexpr int ORBIS_HEAD_TRACKER_ERROR_UNEXPECTED_TRACKING_INSTANCE = 0x811b0013; // 2166030355 +constexpr int ORBIS_HEAD_TRACKER_ERROR_VIDEO_SHARED_MEMORY_NOT_ENOUGH = 0x811b0008; // 2166030344 + +// HID +constexpr int ORBIS_HID_CONTROL_ERROR_INVALID_ARG = 0x803b1001; // 2151354369 +constexpr int ORBIS_HID_CONTROL_ERROR_NOT_INITIALIZED = 0x803b1002; // 2151354370 +constexpr int ORBIS_HID_ERROR_ALREADY_INITIALIZED = 0x803b0008; // 2151350280 +constexpr int ORBIS_HID_ERROR_ALREADY_LOGGED_OUT = 0x803b0101; // 2151350529 +constexpr int ORBIS_HID_ERROR_COPYIN_FAILED = 0x803b0007; // 2151350279 +constexpr int ORBIS_HID_ERROR_COPYOUT_FAILED = 0x803b0006; // 2151350278 +constexpr int ORBIS_HID_ERROR_DEVICE_BUSY = 0x803b000b; // 2151350283 +constexpr int ORBIS_HID_ERROR_DEVICE_NOT_FOUND = 0x803b0003; // 2151350275 +constexpr int ORBIS_HID_ERROR_ENTRY_NOT_FOUND = 0x803b000c; // 2151350284 +constexpr int ORBIS_HID_ERROR_INVALID_ARGUMENT = 0x803b0001; // 2151350273 +constexpr int ORBIS_HID_ERROR_INVALID_DATA_FORMAT = 0x803b000e; // 2151350286 +constexpr int ORBIS_HID_ERROR_INVALID_HANDLE = 0x803b0002; // 2151350274 +constexpr int ORBIS_HID_ERROR_KPROC_CREATE = 0x803b0005; // 2151350277 +constexpr int ORBIS_HID_ERROR_NOT_INITIALIZED = 0x803b0009; // 2151350281 +constexpr int ORBIS_HID_ERROR_NOT_SUPPORTED = 0x803b0004; // 2151350276 +constexpr int ORBIS_HID_ERROR_REGISTRY_INIT_FAILED = 0x803b000d; // 2151350285 +constexpr int ORBIS_HID_ERROR_REQUEST_TIMEOUT = 0x803b000f; // 2151350287 +constexpr int ORBIS_HID_ERROR_RESOURCE_SHORTAGE = 0x803b000a; // 2151350282 + +// HMAC +constexpr int ORBIS_HMAC_ERROR_INVALID_DIGEST_SIZE = 0x80481002; // 2152206338 +constexpr int ORBIS_HMAC_ERROR_INVALID_POINTER = 0x80481000; // 2152206336 + +// JPEG +constexpr int ORBIS_JPEG_DEC_ERROR_DECODE_ERROR = 0x80650012; // 2154102802 +constexpr int ORBIS_JPEG_DEC_ERROR_FATAL = 0x80650020; // 2154102816 +constexpr int ORBIS_JPEG_DEC_ERROR_INVALID_ADDR = 0x80650001; // 2154102785 +constexpr int ORBIS_JPEG_DEC_ERROR_INVALID_COEF_MEMORY = 0x80650005; // 2154102789 +constexpr int ORBIS_JPEG_DEC_ERROR_INVALID_DATA = 0x80650010; // 2154102800 +constexpr int ORBIS_JPEG_DEC_ERROR_INVALID_HANDLE = 0x80650004; // 2154102788 +constexpr int ORBIS_JPEG_DEC_ERROR_INVALID_PARAM = 0x80650003; // 2154102787 +constexpr int ORBIS_JPEG_DEC_ERROR_INVALID_SIZE = 0x80650002; // 2154102786 +constexpr int ORBIS_JPEG_DEC_ERROR_INVALID_WORK_MEMORY = 0x80650006; // 2154102790 +constexpr int ORBIS_JPEG_DEC_ERROR_UNSUPPORT_DATA = 0x80650011; // 2154102801 +constexpr int ORBIS_JPEG_ENC_ERROR_DATA_OVERFLOW = 0x80650110; // 2154103056 +constexpr int ORBIS_JPEG_ENC_ERROR_FATAL = 0x80650120; // 2154103072 +constexpr int ORBIS_JPEG_ENC_ERROR_INVALID_ADDR = 0x80650101; // 2154103041 +constexpr int ORBIS_JPEG_ENC_ERROR_INVALID_HANDLE = 0x80650104; // 2154103044 +constexpr int ORBIS_JPEG_ENC_ERROR_INVALID_PARAM = 0x80650103; // 2154103043 +constexpr int ORBIS_JPEG_ENC_ERROR_INVALID_SIZE = 0x80650102; // 2154103042 + +// JSON +constexpr int ORBIS_JSON_ERROR_MULTIPLEINIT = 0x80848111; // 2156167441 +constexpr int ORBIS_JSON_ERROR_NOBUF = 0x80848105; // 2156167429 +constexpr int ORBIS_JSON_ERROR_NOFILE = 0x80848103; // 2156167427 +constexpr int ORBIS_JSON_ERROR_NOINIT = 0x80848110; // 2156167440 +constexpr int ORBIS_JSON_ERROR_NOMEM = 0x80848102; // 2156167426 +constexpr int ORBIS_JSON_ERROR_NOROOT = 0x80848104; // 2156167428 +constexpr int ORBIS_JSON_ERROR_PARSE_INVALID_CHAR = 0x80848101; // 2156167425 + +// M4AAC +constexpr int ORBIS_M4AAC_ENC_ERROR_INTERNAL_ERROR = 0x80a90000; // 2158559232 +constexpr int ORBIS_M4AAC_ENC_ERROR_INVALID_BIT_RATE = 0x80a90005; // 2158559237 +constexpr int ORBIS_M4AAC_ENC_ERROR_INVALID_CHANNEL = 0x80a90003; // 2158559235 +constexpr int ORBIS_M4AAC_ENC_ERROR_INVALID_HANDLE = 0x80a90001; // 2158559233 +constexpr int ORBIS_M4AAC_ENC_ERROR_INVALID_INPUT_FORMAT = 0x80a90006; // 2158559238 +constexpr int ORBIS_M4AAC_ENC_ERROR_INVALID_INPUT_SIZE = 0x80a90008; // 2158559240 +constexpr int ORBIS_M4AAC_ENC_ERROR_INVALID_OUTPUT_FORMAT = 0x80a90007; // 2158559239 +constexpr int ORBIS_M4AAC_ENC_ERROR_INVALID_PREVIOUS_INPUT_SIZE = 0x80a90009; // 2158559241 +constexpr int ORBIS_M4AAC_ENC_ERROR_INVALID_PTR = 0x80a90002; // 2158559234 +constexpr int ORBIS_M4AAC_ENC_ERROR_INVALID_SAMPLING_RATE = 0x80a90004; // 2158559236 + +// MBUS +constexpr int ORBIS_MBUS_ERROR_CLIENT_OVER_MAX = 0x809b0087; // 2157641863 +constexpr int ORBIS_MBUS_ERROR_EVENT_RECEIVE_CANCELED = 0x809b0088; // 2157641864 +constexpr int ORBIS_MBUS_ERROR_INVALID_BUS_ID = 0x809b0006; // 2157641734 +constexpr int ORBIS_MBUS_ERROR_INVALID_DEVICE_ID = 0x809b0005; // 2157641733 +constexpr int ORBIS_MBUS_ERROR_INVALID_HANDLE = 0x809b0007; // 2157641735 +constexpr int ORBIS_MBUS_ERROR_INVALID_REQUESTER = 0x809b0009; // 2157641737 +constexpr int ORBIS_MBUS_ERROR_INVALID_SYSTEM_ID = 0x809b0008; // 2157641736 + +// MD5 +constexpr int ORBIS_MD5_ERROR_INVALID_POINTER = 0x80480100; // 2152202496 +constexpr int ORBIS_MD5_ERROR_INVALID_STATE = 0x80480101; // 2152202497 +constexpr int ORBIS_MD5_ERROR_UNINITIALIZED_CONTEXT = 0x80480102; // 2152202498 + +// MOUSE +constexpr int ORBIS_MOUSE_ERROR_ALREADY_OPENED = 0x80df0004; // 2162098180 +constexpr int ORBIS_MOUSE_ERROR_FATAL = 0x80df00ff; // 2162098431 +constexpr int ORBIS_MOUSE_ERROR_INVALID_ARG = 0x80df0001; // 2162098177 +constexpr int ORBIS_MOUSE_ERROR_INVALID_HANDLE = 0x80df0003; // 2162098179 +constexpr int ORBIS_MOUSE_ERROR_INVALID_PORT = 0x80df0002; // 2162098178 +constexpr int ORBIS_MOUSE_ERROR_NOT_INITIALIZED = 0x80df0005; // 2162098181 + +// MOVE +constexpr int ORBIS_MOVE_ERROR_ALREADY_INIT = 0x80ee0002; // 2163081218 +constexpr int ORBIS_MOVE_ERROR_ALREADY_OPENED = 0x80ee0007; // 2163081223 +constexpr int ORBIS_MOVE_ERROR_FATAL = 0x80ee00ff; // 2163081471 +constexpr int ORBIS_MOVE_ERROR_INVALID_ARG = 0x80ee0003; // 2163081219 +constexpr int ORBIS_MOVE_ERROR_INVALID_HANDLE = 0x80ee0004; // 2163081220 +constexpr int ORBIS_MOVE_ERROR_INVALID_PORT = 0x80ee0006; // 2163081222 +constexpr int ORBIS_MOVE_ERROR_MAX_CONTROLLERS_EXCEEDED = 0x80ee0005; // 2163081221 +constexpr int ORBIS_MOVE_ERROR_NOT_INIT = 0x80ee0001; // 2163081217 +constexpr int ORBIS_MOVE_TRACKER_ERROR_ALREADY_INIT = 0x80ef0002; // 2163146754 +constexpr int ORBIS_MOVE_TRACKER_ERROR_INVALID_ARG = 0x80ef0003; // 2163146755 +constexpr int ORBIS_MOVE_TRACKER_ERROR_INVALID_HANDLE = 0x80ef0004; // 2163146756 +constexpr int ORBIS_MOVE_TRACKER_ERROR_NOT_INIT = 0x80ef0001; // 2163146753 + +// MT19937 +constexpr int ORBIS_MT19937_ERROR_INVALID_POINTER = 0x80490100; // 2152268032 + +// NGS2 +constexpr int ORBIS_NGS2_ERROR_BUFFER_BROKEN = 0x804a020b; // 2152333835 +constexpr int ORBIS_NGS2_ERROR_CODEC_DECODE_FAIL = 0x804a0805; // 2152335365 +constexpr int ORBIS_NGS2_ERROR_CODEC_EMPTY_CHANNEL = 0x804a0802; // 2152335362 +constexpr int ORBIS_NGS2_ERROR_CODEC_EMPTY_INSTANCE = 0x804a0801; // 2152335361 +constexpr int ORBIS_NGS2_ERROR_CODEC_RESET_FAIL = 0x804a0804; // 2152335364 +constexpr int ORBIS_NGS2_ERROR_CODEC_SETUP_FAIL = 0x804a0803; // 2152335363 +constexpr int ORBIS_NGS2_ERROR_CODEC_UNKNOWN_WAVEFORM = 0x804a0800; // 2152335360 +constexpr int ORBIS_NGS2_ERROR_DETECTED_CIRCULAR_VOICE_CONTROL = 0x804a030b; // 2152334091 +constexpr int ORBIS_NGS2_ERROR_EMPTY_BUFFER = 0x804a020c; // 2152333836 +constexpr int ORBIS_NGS2_ERROR_EMPTY_CHANNEL_WORK = 0x804a0306; // 2152334086 +constexpr int ORBIS_NGS2_ERROR_EMPTY_CODEC_DECODER = 0x804a0307; // 2152334087 +constexpr int ORBIS_NGS2_ERROR_EMPTY_REPORT_HANDLE = 0x804a0205; // 2152333829 +constexpr int ORBIS_NGS2_ERROR_FAIL = 0x804a0001; // 2152333313 +constexpr int ORBIS_NGS2_ERROR_INVALID_BUFFER_ADDRESS = 0x804a0207; // 2152333831 +constexpr int ORBIS_NGS2_ERROR_INVALID_BUFFER_ALIGN = 0x804a0208; // 2152333832 +constexpr int ORBIS_NGS2_ERROR_INVALID_BUFFER_ALLOCATOR = 0x804a020a; // 2152333834 +constexpr int ORBIS_NGS2_ERROR_INVALID_BUFFER_INFO = 0x804a0206; // 2152333830 +constexpr int ORBIS_NGS2_ERROR_INVALID_BUFFER_SIZE = 0x804a0209; // 2152333833 +constexpr int ORBIS_NGS2_ERROR_INVALID_DELAY_TAP_INFO = 0x804a0534; // 2152334644 +constexpr int ORBIS_NGS2_ERROR_INVALID_DELAY_TYPE = 0x804a0532; // 2152334642 +constexpr int ORBIS_NGS2_ERROR_INVALID_ENVELOPE_CURVE = 0x804a0500; // 2152334592 +constexpr int ORBIS_NGS2_ERROR_INVALID_ENVELOPE_POINT_ADDRESS = 0x804a0155; // 2152333653 +constexpr int ORBIS_NGS2_ERROR_INVALID_EVENT_TYPE = 0x804a0303; // 2152334083 +constexpr int ORBIS_NGS2_ERROR_INVALID_FILTER_INDEX = 0x804a0600; // 2152334848 +constexpr int ORBIS_NGS2_ERROR_INVALID_FILTER_LOCATION = 0x804a0602; // 2152334850 +constexpr int ORBIS_NGS2_ERROR_INVALID_FILTER_TYPE = 0x804a0601; // 2152334849 +constexpr int ORBIS_NGS2_ERROR_INVALID_HANDLE = 0x804a0200; // 2152333824 +constexpr int ORBIS_NGS2_ERROR_INVALID_LFE_FC = 0x804a0603; // 2152334851 +constexpr int ORBIS_NGS2_ERROR_INVALID_MATRIX_INDEX = 0x804a0700; // 2152335104 +constexpr int ORBIS_NGS2_ERROR_INVALID_MATRIX_LEVEL_ADDRESS = 0x804a0153; // 2152333651 +constexpr int ORBIS_NGS2_ERROR_INVALID_MAX_ATRAC9_CHANNEL_WORKS = 0x804a010b; // 2152333579 +constexpr int ORBIS_NGS2_ERROR_INVALID_MAX_ATRAC9_DECODERS = 0x804a010a; // 2152333578 +constexpr int ORBIS_NGS2_ERROR_INVALID_MAX_CHANNEL_WORKS = 0x804a0105; // 2152333573 +constexpr int ORBIS_NGS2_ERROR_INVALID_MAX_CHANNELS = 0x804a0104; // 2152333572 +constexpr int ORBIS_NGS2_ERROR_INVALID_MAX_CHORUS_PHASES = 0x804a0520; // 2152334624 +constexpr int ORBIS_NGS2_ERROR_INVALID_MAX_CODEC_CACHES = 0x804a0109; // 2152333577 +constexpr int ORBIS_NGS2_ERROR_INVALID_MAX_DELAY_LENGTH = 0x804a0530; // 2152334640 +constexpr int ORBIS_NGS2_ERROR_INVALID_MAX_DELAY_TAPS = 0x804a0531; // 2152334641 +constexpr int ORBIS_NGS2_ERROR_INVALID_MAX_ENVELOPE_POINTS = 0x804a0107; // 2152333575 +constexpr int ORBIS_NGS2_ERROR_INVALID_MAX_FILTERS = 0x804a0108; // 2152333576 +constexpr int ORBIS_NGS2_ERROR_INVALID_MAX_GRAIN_SAMPLES = 0x804a0050; // 2152333392 +constexpr int ORBIS_NGS2_ERROR_INVALID_MAX_INPUT_DELAY_BLOCKS = 0x804a0102; // 2152333570 +constexpr int ORBIS_NGS2_ERROR_INVALID_MAX_INPUTS = 0x804a010c; // 2152333580 +constexpr int ORBIS_NGS2_ERROR_INVALID_MAX_MATRICES = 0x804a0100; // 2152333568 +constexpr int ORBIS_NGS2_ERROR_INVALID_MAX_PORTS = 0x804a0101; // 2152333569 +constexpr int ORBIS_NGS2_ERROR_INVALID_MAX_VOICES = 0x804a0103; // 2152333571 +constexpr int ORBIS_NGS2_ERROR_INVALID_MAX_WAVEFORM_BLOCKS = 0x804a0106; // 2152333574 +constexpr int ORBIS_NGS2_ERROR_INVALID_MODULE_BUFFER_ID = 0x804a0a03; // 2152335875 +constexpr int ORBIS_NGS2_ERROR_INVALID_MODULE_ID = 0x804a0a00; // 2152335872 +constexpr int ORBIS_NGS2_ERROR_INVALID_MODULE_INDEX = 0x804a0b00; // 2152336128 +constexpr int ORBIS_NGS2_ERROR_INVALID_MODULE_INFO_SIZE = 0x804a0b01; // 2152336129 +constexpr int ORBIS_NGS2_ERROR_INVALID_MODULE_STATE_OFFSET = 0x804a0a04; // 2152335876 +constexpr int ORBIS_NGS2_ERROR_INVALID_MODULE_STATE_SIZE = 0x804a0a05; // 2152335877 +constexpr int ORBIS_NGS2_ERROR_INVALID_NUM_CHANNELS = 0x804a0052; // 2152333394 +constexpr int ORBIS_NGS2_ERROR_INVALID_NUM_CHORUS_PHASES = 0x804a0521; // 2152334625 +constexpr int ORBIS_NGS2_ERROR_INVALID_NUM_DELAY_TAPS = 0x804a0533; // 2152334643 +constexpr int ORBIS_NGS2_ERROR_INVALID_NUM_ENVELOPE_POINTS = 0x804a0152; // 2152333650 +constexpr int ORBIS_NGS2_ERROR_INVALID_NUM_GRAIN_SAMPLES = 0x804a0051; // 2152333393 +constexpr int ORBIS_NGS2_ERROR_INVALID_NUM_MATRIX_LEVELS = 0x804a0150; // 2152333648 +constexpr int ORBIS_NGS2_ERROR_INVALID_NUM_MODULE_BUFFERS = 0x804a0a02; // 2152335874 +constexpr int ORBIS_NGS2_ERROR_INVALID_NUM_MODULES = 0x804a0a01; // 2152335873 +constexpr int ORBIS_NGS2_ERROR_INVALID_NUM_PEAKMETER_BLOCKS = 0x804a0156; // 2152333654 +constexpr int ORBIS_NGS2_ERROR_INVALID_NUM_WAVEFORM_BLOCKS = 0x804a0151; // 2152333649 +constexpr int ORBIS_NGS2_ERROR_INVALID_OPTION_ADDRESS = 0x804a0080; // 2152333440 +constexpr int ORBIS_NGS2_ERROR_INVALID_OPTION_FLAG = 0x804a0082; // 2152333442 +constexpr int ORBIS_NGS2_ERROR_INVALID_OPTION_SIZE = 0x804a0081; // 2152333441 +constexpr int ORBIS_NGS2_ERROR_INVALID_OUT_ADDRESS = 0x804a0053; // 2152333395 +constexpr int ORBIS_NGS2_ERROR_INVALID_OUT_SIZE = 0x804a0054; // 2152333396 +constexpr int ORBIS_NGS2_ERROR_INVALID_PAN_MATRIX_FORMAT = 0x804a0912; // 2152335634 +constexpr int ORBIS_NGS2_ERROR_INVALID_PAN_PARAM = 0x804a0914; // 2152335636 +constexpr int ORBIS_NGS2_ERROR_INVALID_PAN_SPEAKER = 0x804a0911; // 2152335633 +constexpr int ORBIS_NGS2_ERROR_INVALID_PAN_UNIT_ANGLE = 0x804a0910; // 2152335632 +constexpr int ORBIS_NGS2_ERROR_INVALID_PAN_WORK = 0x804a0913; // 2152335635 +constexpr int ORBIS_NGS2_ERROR_INVALID_PATCH = 0x804a0305; // 2152334085 +constexpr int ORBIS_NGS2_ERROR_INVALID_PEAKMETER_FLAG = 0x804a0510; // 2152334608 +constexpr int ORBIS_NGS2_ERROR_INVALID_PORT_INDEX = 0x804a0304; // 2152334084 +constexpr int ORBIS_NGS2_ERROR_INVALID_RACK_HANDLE = 0x804a0261; // 2152333921 +constexpr int ORBIS_NGS2_ERROR_INVALID_RACK_ID = 0x804a0260; // 2152333920 +constexpr int ORBIS_NGS2_ERROR_INVALID_REPORT_HANDLE = 0x804a0204; // 2152333828 +constexpr int ORBIS_NGS2_ERROR_INVALID_REPORT_HANDLER = 0x804a0203; // 2152333827 +constexpr int ORBIS_NGS2_ERROR_INVALID_REPORT_TYPE = 0x804a0202; // 2152333826 +constexpr int ORBIS_NGS2_ERROR_INVALID_REVERB_SIZE = 0x804a0900; // 2152335616 +constexpr int ORBIS_NGS2_ERROR_INVALID_SAMPLE_RATE = 0x804a0201; // 2152333825 +constexpr int ORBIS_NGS2_ERROR_INVALID_SYSTEM_HANDLE = 0x804a0230; // 2152333872 +constexpr int ORBIS_NGS2_ERROR_INVALID_USER_FX_PARAM_SIZE = 0x804a0650; // 2152334928 +constexpr int ORBIS_NGS2_ERROR_INVALID_VOICE_CONTROL_ADDRESS = 0x804a0309; // 2152334089 +constexpr int ORBIS_NGS2_ERROR_INVALID_VOICE_CONTROL_ID = 0x804a0308; // 2152334088 +constexpr int ORBIS_NGS2_ERROR_INVALID_VOICE_CONTROL_SIZE = 0x804a030a; // 2152334090 +constexpr int ORBIS_NGS2_ERROR_INVALID_VOICE_HANDLE = 0x804a0300; // 2152334080 +constexpr int ORBIS_NGS2_ERROR_INVALID_VOICE_INDEX = 0x804a0302; // 2152334082 +constexpr int ORBIS_NGS2_ERROR_INVALID_VOICE_STATE_SIZE = 0x804a0a06; // 2152335878 +constexpr int ORBIS_NGS2_ERROR_INVALID_WAVEFORM_ADDRESS = 0x804a0406; // 2152334342 +constexpr int ORBIS_NGS2_ERROR_INVALID_WAVEFORM_BLOCK_ADDRESS = 0x804a0154; // 2152333652 +constexpr int ORBIS_NGS2_ERROR_INVALID_WAVEFORM_BLOCK_NUM_REPEATS = 0x804a0409; // 2152334345 +constexpr int ORBIS_NGS2_ERROR_INVALID_WAVEFORM_CONFIG = 0x804a0403; // 2152334339 +constexpr int ORBIS_NGS2_ERROR_INVALID_WAVEFORM_DATA = 0x804a0408; // 2152334344 +constexpr int ORBIS_NGS2_ERROR_INVALID_WAVEFORM_FORMAT = 0x804a0400; // 2152334336 +constexpr int ORBIS_NGS2_ERROR_INVALID_WAVEFORM_FRAME = 0x804a0405; // 2152334341 +constexpr int ORBIS_NGS2_ERROR_INVALID_WAVEFORM_SAMPLE_RATE = 0x804a0404; // 2152334340 +constexpr int ORBIS_NGS2_ERROR_INVALID_WAVEFORM_SIZE = 0x804a0407; // 2152334343 +constexpr int ORBIS_NGS2_ERROR_INVALID_WAVEFORM_TYPE = 0x804a0402; // 2152334338 +constexpr int ORBIS_NGS2_ERROR_UNINIT_VOICE = 0x804a0301; // 2152334081 +constexpr int ORBIS_NGS2_ERROR_UNKNOWN_WAVEFORM_FORMAT = 0x804a0401; // 2152334337 + +// PNG +constexpr int ORBIS_PNG_DEC_ERROR_DECODE_ERROR = 0x80690012; // 2154364946 +constexpr int ORBIS_PNG_DEC_ERROR_FATAL = 0x80690020; // 2154364960 +constexpr int ORBIS_PNG_DEC_ERROR_INVALID_ADDR = 0x80690001; // 2154364929 +constexpr int ORBIS_PNG_DEC_ERROR_INVALID_DATA = 0x80690010; // 2154364944 +constexpr int ORBIS_PNG_DEC_ERROR_INVALID_HANDLE = 0x80690004; // 2154364932 +constexpr int ORBIS_PNG_DEC_ERROR_INVALID_PARAM = 0x80690003; // 2154364931 +constexpr int ORBIS_PNG_DEC_ERROR_INVALID_SIZE = 0x80690002; // 2154364930 +constexpr int ORBIS_PNG_DEC_ERROR_INVALID_WORK_MEMORY = 0x80690005; // 2154364933 +constexpr int ORBIS_PNG_DEC_ERROR_UNSUPPORT_DATA = 0x80690011; // 2154364945 +constexpr int ORBIS_PNG_ENC_ERROR_DATA_OVERFLOW = 0x80690110; // 2154365200 +constexpr int ORBIS_PNG_ENC_ERROR_FATAL = 0x80690120; // 2154365216 +constexpr int ORBIS_PNG_ENC_ERROR_INVALID_ADDR = 0x80690101; // 2154365185 +constexpr int ORBIS_PNG_ENC_ERROR_INVALID_HANDLE = 0x80690104; // 2154365188 +constexpr int ORBIS_PNG_ENC_ERROR_INVALID_PARAM = 0x80690103; // 2154365187 +constexpr int ORBIS_PNG_ENC_ERROR_INVALID_SIZE = 0x80690102; // 2154365186 + +// PSVR +constexpr int ORBIS_PSVR_ERROR_ALREADY_INITIALIZED = 0x80f9000c; // 2163802124 +constexpr int ORBIS_PSVR_ERROR_API_CONFLICT = 0x80f90010; // 2163802128 +constexpr int ORBIS_PSVR_ERROR_COMPILE_FAIL = 0x80f90006; // 2163802118 +constexpr int ORBIS_PSVR_ERROR_CREATE_FAIL = 0x80f90001; // 2163802113 +constexpr int ORBIS_PSVR_ERROR_GRAMMAR_FAIL = 0x80f90007; // 2163802119 +constexpr int ORBIS_PSVR_ERROR_INVALID_ARGUMENT = 0x80f90009; // 2163802121 +constexpr int ORBIS_PSVR_ERROR_INVALID_ERROR_MESSAGE = 0x80f9000f; // 2163802127 +constexpr int ORBIS_PSVR_ERROR_INVALID_OPTION = 0x80f90002; // 2163802114 +constexpr int ORBIS_PSVR_ERROR_INVALID_PSVR_POINTER = 0x80f9000e; // 2163802126 +constexpr int ORBIS_PSVR_ERROR_INVALID_RESULT = 0x80f9000d; // 2163802125 +constexpr int ORBIS_PSVR_ERROR_MEMORY_FAIL = 0x80f90003; // 2163802115 +constexpr int ORBIS_PSVR_ERROR_MEMORY_LEAK = 0x80f90004; // 2163802116 +constexpr int ORBIS_PSVR_ERROR_NOT_INITIALIZED = 0x80f9000b; // 2163802123 +constexpr int ORBIS_PSVR_ERROR_RESOURCE_INSUFFICIENT = 0x80f9000a; // 2163802122 +constexpr int ORBIS_PSVR_ERROR_SAVE_CPR_FAIL = 0x80f90005; // 2163802117 +constexpr int ORBIS_PSVR_ERROR_START_FAIL = 0x80f90008; // 2163802120 + +// REGMGR +constexpr int ORBIS_REGMGR_ERROR_BKUPLEVEL = 0x800d010d; // 2148335885 +constexpr int ORBIS_REGMGR_ERROR_BKUPLEVEL_I = 0x800d810d; // 2148368653 +constexpr int ORBIS_REGMGR_ERROR_BRK_BKUP_DATA = 0x800d0223; // 2148336163 +constexpr int ORBIS_REGMGR_ERROR_BRK_BKUP_HEAD = 0x800d0222; // 2148336162 +constexpr int ORBIS_REGMGR_ERROR_CACHEAREA = 0x800d0212; // 2148336146 +constexpr int ORBIS_REGMGR_ERROR_CACHEAREA_I = 0x800d8212; // 2148368914 +constexpr int ORBIS_REGMGR_ERROR_CACHEFLAG = 0x800d0109; // 2148335881 +constexpr int ORBIS_REGMGR_ERROR_CACHEFLAG_I = 0x800d8109; // 2148368649 +constexpr int ORBIS_REGMGR_ERROR_COPYIN = 0x800d020f; // 2148336143 +constexpr int ORBIS_REGMGR_ERROR_COPYIN_I = 0x800d820f; // 2148368911 +constexpr int ORBIS_REGMGR_ERROR_COPYOUT = 0x800d0210; // 2148336144 +constexpr int ORBIS_REGMGR_ERROR_COPYOUT_I = 0x800d8210; // 2148368912 +constexpr int ORBIS_REGMGR_ERROR_DBPOS = 0x800d010b; // 2148335883 +constexpr int ORBIS_REGMGR_ERROR_DBPOS_I = 0x800d810b; // 2148368651 +constexpr int ORBIS_REGMGR_ERROR_DRV_BROKEN_MAX = 0x800d04ff; // 2148336895 +constexpr int ORBIS_REGMGR_ERROR_DRV_BROKEN_MAX_I = 0x800d84ff; // 2148369663 +constexpr int ORBIS_REGMGR_ERROR_DRV_BROKEN_MIN = 0x800d0400; // 2148336640 +constexpr int ORBIS_REGMGR_ERROR_DRV_BROKEN_MIN_I = 0x800d8400; // 2148369408 +constexpr int ORBIS_REGMGR_ERROR_DRV_CONTDATA = 0x800d0401; // 2148336641 +constexpr int ORBIS_REGMGR_ERROR_DRV_CONTDATA_I = 0x800d8401; // 2148369409 +constexpr int ORBIS_REGMGR_ERROR_DRV_DATAFILE = 0x800d0402; // 2148336642 +constexpr int ORBIS_REGMGR_ERROR_DRV_DATAFILE_I = 0x800d8402; // 2148369410 +constexpr int ORBIS_REGMGR_ERROR_DRV_DATASIZE = 0x800d0606; // 2148337158 +constexpr int ORBIS_REGMGR_ERROR_DRV_DATASIZE_I = 0x800d8606; // 2148369926 +constexpr int ORBIS_REGMGR_ERROR_DRV_DATATYPE = 0x800d0607; // 2148337159 +constexpr int ORBIS_REGMGR_ERROR_DRV_DATATYPE_I = 0x800d8607; // 2148369927 +constexpr int ORBIS_REGMGR_ERROR_DRV_ERRIO = 0x800d0404; // 2148336644 +constexpr int ORBIS_REGMGR_ERROR_DRV_ERRIO_I = 0x800d8404; // 2148369412 +constexpr int ORBIS_REGMGR_ERROR_DRV_FILENAME = 0x800d0602; // 2148337154 +constexpr int ORBIS_REGMGR_ERROR_DRV_FILENAME_I = 0x800d8602; // 2148369922 +constexpr int ORBIS_REGMGR_ERROR_DRV_FILEPOS = 0x800d0608; // 2148337160 +constexpr int ORBIS_REGMGR_ERROR_DRV_FILEPOS_I = 0x800d8608; // 2148369928 +constexpr int ORBIS_REGMGR_ERROR_DRV_FLUSH = 0x800d0407; // 2148336647 +constexpr int ORBIS_REGMGR_ERROR_DRV_FLUSH_I = 0x800d8407; // 2148369415 +constexpr int ORBIS_REGMGR_ERROR_DRV_FORMAT = 0x800d0609; // 2148337161 +constexpr int ORBIS_REGMGR_ERROR_DRV_FORMAT_I = 0x800d8609; // 2148369929 +constexpr int ORBIS_REGMGR_ERROR_DRV_IO_BASE = 0x800d0480; // 2148336768 +constexpr int ORBIS_REGMGR_ERROR_DRV_IO_BASE_I = 0x800d8480; // 2148369536 +constexpr int ORBIS_REGMGR_ERROR_DRV_IO_BUG_NOINIT = 0x800d0484; // 2148336772 +constexpr int ORBIS_REGMGR_ERROR_DRV_IO_BUG_NOINIT_I = 0x800d8484; // 2148369540 +constexpr int ORBIS_REGMGR_ERROR_DRV_IO_BUG_NOMEM = 0x800d0483; // 2148336771 +constexpr int ORBIS_REGMGR_ERROR_DRV_IO_BUG_NOMEM_I = 0x800d8483; // 2148369539 +constexpr int ORBIS_REGMGR_ERROR_DRV_IO_BUG_SIZE = 0x800d0482; // 2148336770 +constexpr int ORBIS_REGMGR_ERROR_DRV_IO_BUG_SIZE_I = 0x800d8482; // 2148369538 +constexpr int ORBIS_REGMGR_ERROR_DRV_IO_BUG_TOOBIG = 0x800d0485; // 2148336773 +constexpr int ORBIS_REGMGR_ERROR_DRV_IO_BUG_TOOBIG_I = 0x800d8485; // 2148369541 +constexpr int ORBIS_REGMGR_ERROR_DRV_IO_BUG_WHENCE = 0x800d0481; // 2148336769 +constexpr int ORBIS_REGMGR_ERROR_DRV_IO_BUG_WHENCE_I = 0x800d8481; // 2148369537 +constexpr int ORBIS_REGMGR_ERROR_DRV_MKDIR = 0x800d0409; // 2148336649 +constexpr int ORBIS_REGMGR_ERROR_DRV_MKDIR_I = 0x800d8409; // 2148369417 +constexpr int ORBIS_REGMGR_ERROR_DRV_NOENT = 0x800d0403; // 2148336643 +constexpr int ORBIS_REGMGR_ERROR_DRV_NOENT_I = 0x800d8403; // 2148369411 +constexpr int ORBIS_REGMGR_ERROR_DRV_NOINIT = 0x800d0603; // 2148337155 +constexpr int ORBIS_REGMGR_ERROR_DRV_NOINIT_I = 0x800d8603; // 2148369923 +constexpr int ORBIS_REGMGR_ERROR_DRV_OVERCNT = 0x800d0604; // 2148337156 +constexpr int ORBIS_REGMGR_ERROR_DRV_OVERCNT_I = 0x800d8604; // 2148369924 +constexpr int ORBIS_REGMGR_ERROR_DRV_PRGBUG_MAX = 0x800d06ff; // 2148337407 +constexpr int ORBIS_REGMGR_ERROR_DRV_PRGBUG_MAX_I = 0x800d86ff; // 2148370175 +constexpr int ORBIS_REGMGR_ERROR_DRV_PRGBUG_MIN = 0x800d0600; // 2148337152 +constexpr int ORBIS_REGMGR_ERROR_DRV_PRGBUG_MIN_I = 0x800d8600; // 2148369920 +constexpr int ORBIS_REGMGR_ERROR_DRV_READ = 0x800d0405; // 2148336645 +constexpr int ORBIS_REGMGR_ERROR_DRV_READ_I = 0x800d8405; // 2148369413 +constexpr int ORBIS_REGMGR_ERROR_DRV_REINIT = 0x800d0601; // 2148337153 +constexpr int ORBIS_REGMGR_ERROR_DRV_REINIT_I = 0x800d8601; // 2148369921 +constexpr int ORBIS_REGMGR_ERROR_DRV_SYNC = 0x800d0408; // 2148336648 +constexpr int ORBIS_REGMGR_ERROR_DRV_SYNC_I = 0x800d8408; // 2148369416 +constexpr int ORBIS_REGMGR_ERROR_DRV_UNIQUEID = 0x800d0605; // 2148337157 +constexpr int ORBIS_REGMGR_ERROR_DRV_UNIQUEID_I = 0x800d8605; // 2148369925 +constexpr int ORBIS_REGMGR_ERROR_DRV_UPDATE_MAX = 0x800d05ff; // 2148337151 +constexpr int ORBIS_REGMGR_ERROR_DRV_UPDATE_MAX_I = 0x800d85ff; // 2148369919 +constexpr int ORBIS_REGMGR_ERROR_DRV_UPDATE_MIN = 0x800d0500; // 2148336896 +constexpr int ORBIS_REGMGR_ERROR_DRV_UPDATE_MIN_I = 0x800d8500; // 2148369664 +constexpr int ORBIS_REGMGR_ERROR_DRV_WRITE = 0x800d0406; // 2148336646 +constexpr int ORBIS_REGMGR_ERROR_DRV_WRITE_I = 0x800d8406; // 2148369414 +constexpr int ORBIS_REGMGR_ERROR_EAPWRITE = 0x800d010c; // 2148335884 +constexpr int ORBIS_REGMGR_ERROR_EAPWRITE_I = 0x800d810c; // 2148368652 +constexpr int ORBIS_REGMGR_ERROR_ERREAPCONT = 0x800d0004; // 2148335620 +constexpr int ORBIS_REGMGR_ERROR_ERREAPCONT_I = 0x800d8004; // 2148368388 +constexpr int ORBIS_REGMGR_ERROR_ERREAPDATA = 0x800d0005; // 2148335621 +constexpr int ORBIS_REGMGR_ERROR_ERREAPDATA_I = 0x800d8005; // 2148368389 +constexpr int ORBIS_REGMGR_ERROR_ERREAPHEAD = 0x800d0003; // 2148335619 +constexpr int ORBIS_REGMGR_ERROR_ERREAPHEAD_I = 0x800d8003; // 2148368387 +constexpr int ORBIS_REGMGR_ERROR_ERRNVSDATA = 0x800d0002; // 2148335618 +constexpr int ORBIS_REGMGR_ERROR_ERRNVSDATA_I = 0x800d8002; // 2148368386 +constexpr int ORBIS_REGMGR_ERROR_FORMAT = 0x800d0103; // 2148335875 +constexpr int ORBIS_REGMGR_ERROR_FORMAT_I = 0x800d8103; // 2148368643 +constexpr int ORBIS_REGMGR_ERROR_GPSGERR = 0x800d010e; // 2148335886 +constexpr int ORBIS_REGMGR_ERROR_GPSGERR_I = 0x800d810e; // 2148368654 +constexpr int ORBIS_REGMGR_ERROR_HANDLER_REGIST = 0x800d0213; // 2148336147 +constexpr int ORBIS_REGMGR_ERROR_HANDLER_REGIST_I = 0x800d8213; // 2148368915 +constexpr int ORBIS_REGMGR_ERROR_HOSTERR = 0x800d0110; // 2148335888 +constexpr int ORBIS_REGMGR_ERROR_HOSTERR_I = 0x800d8110; // 2148368656 +constexpr int ORBIS_REGMGR_ERROR_HOWTOERR = 0x800d0111; // 2148335889 +constexpr int ORBIS_REGMGR_ERROR_HOWTOERR_I = 0x800d8111; // 2148368657 +constexpr int ORBIS_REGMGR_ERROR_INIT_MASK = 0x800d8000; // 2148368384 +constexpr int ORBIS_REGMGR_ERROR_IO_READ = 0x800d021b; // 2148336155 +constexpr int ORBIS_REGMGR_ERROR_IO_READ_I = 0x800d821b; // 2148368923 +constexpr int ORBIS_REGMGR_ERROR_IO_SEEK = 0x800d021c; // 2148336156 +constexpr int ORBIS_REGMGR_ERROR_IO_SEEK_I = 0x800d821c; // 2148368924 +constexpr int ORBIS_REGMGR_ERROR_IO_WRITE = 0x800d021d; // 2148336157 +constexpr int ORBIS_REGMGR_ERROR_IO_WRITE_I = 0x800d821d; // 2148368925 +constexpr int ORBIS_REGMGR_ERROR_LEVELERR = 0x800d010a; // 2148335882 +constexpr int ORBIS_REGMGR_ERROR_LEVELERR_I = 0x800d810a; // 2148368650 +constexpr int ORBIS_REGMGR_ERROR_MACNERR = 0x800d0106; // 2148335878 +constexpr int ORBIS_REGMGR_ERROR_MACNERR_I = 0x800d8106; // 2148368646 +constexpr int ORBIS_REGMGR_ERROR_MGR_BROKEN_MAX = 0x800d00ff; // 2148335871 +constexpr int ORBIS_REGMGR_ERROR_MGR_BROKEN_MAX_I = 0x800d80ff; // 2148368639 +constexpr int ORBIS_REGMGR_ERROR_MGR_BROKEN_MIN = 0x800d0000; // 2148335616 +constexpr int ORBIS_REGMGR_ERROR_MGR_PRGBUG_MAX = 0x800d03ff; // 2148336639 +constexpr int ORBIS_REGMGR_ERROR_MGR_PRGBUG_MAX_I = 0x800d83ff; // 2148369407 +constexpr int ORBIS_REGMGR_ERROR_MGR_PRGBUG_MIN = 0x800d0200; // 2148336128 +constexpr int ORBIS_REGMGR_ERROR_MGR_PRGBUG_MIN_I = 0x800d8200; // 2148368896 +constexpr int ORBIS_REGMGR_ERROR_MGR_UPDATE_MAX = 0x800d01ff; // 2148336127 +constexpr int ORBIS_REGMGR_ERROR_MGR_UPDATE_MAX_I = 0x800d81ff; // 2148368895 +constexpr int ORBIS_REGMGR_ERROR_MGR_UPDATE_MIN = 0x800d0100; // 2148335872 +constexpr int ORBIS_REGMGR_ERROR_MGR_UPDATE_MIN_I = 0x800d8100; // 2148368640 +constexpr int ORBIS_REGMGR_ERROR_MTX_SLEEP = 0x800d021a; // 2148336154 +constexpr int ORBIS_REGMGR_ERROR_MTX_SLEEP_I = 0x800d821a; // 2148368922 +constexpr int ORBIS_REGMGR_ERROR_NODATA = 0x800d0102; // 2148335874 +constexpr int ORBIS_REGMGR_ERROR_NODATA_I = 0x800d8102; // 2148368642 +constexpr int ORBIS_REGMGR_ERROR_NOINITDB = 0x800d0101; // 2148335873 +constexpr int ORBIS_REGMGR_ERROR_NOINITDB_I = 0x800d8101; // 2148368641 +constexpr int ORBIS_REGMGR_ERROR_NOMEMORY = 0x800d0211; // 2148336145 +constexpr int ORBIS_REGMGR_ERROR_NOMEMORY_I = 0x800d8211; // 2148368913 +constexpr int ORBIS_REGMGR_ERROR_NONVSDATA = 0x800d0001; // 2148335617 +constexpr int ORBIS_REGMGR_ERROR_NONVSDATA_I = 0x800d8001; // 2148368385 +constexpr int ORBIS_REGMGR_ERROR_NOTHING = 0x800d020e; // 2148336142 +constexpr int ORBIS_REGMGR_ERROR_NOTHING_I = 0x800d820e; // 2148368910 +constexpr int ORBIS_REGMGR_ERROR_NOTSUPPORTED = 0x800d0219; // 2148336153 +constexpr int ORBIS_REGMGR_ERROR_NOTSUPPORTED_I = 0x800d8219; // 2148368921 +constexpr int ORBIS_REGMGR_ERROR_NPSGERR = 0x800d010f; // 2148335887 +constexpr int ORBIS_REGMGR_ERROR_NPSGERR_I = 0x800d810f; // 2148368655 +constexpr int ORBIS_REGMGR_ERROR_NUMCATERR = 0x800d0112; // 2148335890 +constexpr int ORBIS_REGMGR_ERROR_NUMCATERR_I = 0x800d8112; // 2148368658 +constexpr int ORBIS_REGMGR_ERROR_OVERCNT = 0x800d0104; // 2148335876 +constexpr int ORBIS_REGMGR_ERROR_OVERCNT_I = 0x800d8104; // 2148368644 +constexpr int ORBIS_REGMGR_ERROR_PARAM = 0x800d0202; // 2148336130 +constexpr int ORBIS_REGMGR_ERROR_PARAM_I = 0x800d8202; // 2148368898 +constexpr int ORBIS_REGMGR_ERROR_PRISTRDIR = 0x800d0117; // 2148335895 +constexpr int ORBIS_REGMGR_ERROR_PRISTRDIR_I = 0x800d8117; // 2148368663 +constexpr int ORBIS_REGMGR_ERROR_PRISTRFIL = 0x800d0116; // 2148335894 +constexpr int ORBIS_REGMGR_ERROR_PRISTRFIL_I = 0x800d8116; // 2148368662 +constexpr int ORBIS_REGMGR_ERROR_PRM_BKUP_ADDR = 0x800d0220; // 2148336160 +constexpr int ORBIS_REGMGR_ERROR_PRM_BKUP_SIZE = 0x800d0221; // 2148336161 +constexpr int ORBIS_REGMGR_ERROR_PRM_BKUPLEVEL = 0x800d020a; // 2148336138 +constexpr int ORBIS_REGMGR_ERROR_PRM_BKUPLEVEL_I = 0x800d820a; // 2148368906 +constexpr int ORBIS_REGMGR_ERROR_PRM_CANTRESET = 0x800d020c; // 2148336140 +constexpr int ORBIS_REGMGR_ERROR_PRM_CANTRESET_I = 0x800d820c; // 2148368908 +constexpr int ORBIS_REGMGR_ERROR_PRM_ERRORCODE = 0x800d020d; // 2148336141 +constexpr int ORBIS_REGMGR_ERROR_PRM_ERRORCODE_I = 0x800d820d; // 2148368909 +constexpr int ORBIS_REGMGR_ERROR_PRM_HASH = 0x800d0204; // 2148336132 +constexpr int ORBIS_REGMGR_ERROR_PRM_HASH_I = 0x800d8204; // 2148368900 +constexpr int ORBIS_REGMGR_ERROR_PRM_INITLEVEL = 0x800d0209; // 2148336137 +constexpr int ORBIS_REGMGR_ERROR_PRM_INITLEVEL_I = 0x800d8209; // 2148368905 +constexpr int ORBIS_REGMGR_ERROR_PRM_PATH = 0x800d020b; // 2148336139 +constexpr int ORBIS_REGMGR_ERROR_PRM_PATH_I = 0x800d820b; // 2148368907 +constexpr int ORBIS_REGMGR_ERROR_PRM_PROC_DISCPLAYER = 0x800d021e; // 2148336158 +constexpr int ORBIS_REGMGR_ERROR_PRM_PROC_DISCPLAYER_I = 0x800d821e; // 2148368926 +constexpr int ORBIS_REGMGR_ERROR_PRM_PROC_GAME_LIB = 0x800d0214; // 2148336148 +constexpr int ORBIS_REGMGR_ERROR_PRM_PROC_GAME_LIB_I = 0x800d8214; // 2148368916 +constexpr int ORBIS_REGMGR_ERROR_PRM_PROC_GAME_SDK = 0x800d0215; // 2148336149 +constexpr int ORBIS_REGMGR_ERROR_PRM_PROC_GAME_SDK_I = 0x800d8215; // 2148368917 +constexpr int ORBIS_REGMGR_ERROR_PRM_PROC_HOST = 0x800d0218; // 2148336152 +constexpr int ORBIS_REGMGR_ERROR_PRM_PROC_HOST_I = 0x800d8218; // 2148368920 +constexpr int ORBIS_REGMGR_ERROR_PRM_PROC_NGAME_LIB = 0x800d0216; // 2148336150 +constexpr int ORBIS_REGMGR_ERROR_PRM_PROC_NGAME_LIB_I = 0x800d8216; // 2148368918 +constexpr int ORBIS_REGMGR_ERROR_PRM_PROC_NGAME_SDK = 0x800d0217; // 2148336151 +constexpr int ORBIS_REGMGR_ERROR_PRM_PROC_NGAME_SDK_I = 0x800d8217; // 2148368919 +constexpr int ORBIS_REGMGR_ERROR_PRM_PROPRG = 0x800d0205; // 2148336133 +constexpr int ORBIS_REGMGR_ERROR_PRM_PROPRG_I = 0x800d8205; // 2148368901 +constexpr int ORBIS_REGMGR_ERROR_PRM_REGID = 0x800d0203; // 2148336131 +constexpr int ORBIS_REGMGR_ERROR_PRM_REGID_I = 0x800d8203; // 2148368899 +constexpr int ORBIS_REGMGR_ERROR_PRM_REGID_NUM = 0x800d0206; // 2148336134 +constexpr int ORBIS_REGMGR_ERROR_PRM_REGID_NUM_I = 0x800d8206; // 2148368902 +constexpr int ORBIS_REGMGR_ERROR_PRM_SIZE = 0x800d0208; // 2148336136 +constexpr int ORBIS_REGMGR_ERROR_PRM_SIZE_I = 0x800d8208; // 2148368904 +constexpr int ORBIS_REGMGR_ERROR_PRM_TYPE = 0x800d0207; // 2148336135 +constexpr int ORBIS_REGMGR_ERROR_PRM_TYPE_I = 0x800d8207; // 2148368903 +constexpr int ORBIS_REGMGR_ERROR_PRODUCTCODE = 0x800d0114; // 2148335892 +constexpr int ORBIS_REGMGR_ERROR_PRODUCTCODE_I = 0x800d8114; // 2148368660 +constexpr int ORBIS_REGMGR_ERROR_REGIDERR = 0x800d0105; // 2148335877 +constexpr int ORBIS_REGMGR_ERROR_REGIDERR_I = 0x800d8105; // 2148368645 +constexpr int ORBIS_REGMGR_ERROR_SIZEERR = 0x800d0108; // 2148335880 +constexpr int ORBIS_REGMGR_ERROR_SIZEERR_I = 0x800d8108; // 2148368648 +constexpr int ORBIS_REGMGR_ERROR_SPSGERR = 0x800d0115; // 2148335893 +constexpr int ORBIS_REGMGR_ERROR_SPSGERR_I = 0x800d8115; // 2148368661 +constexpr int ORBIS_REGMGR_ERROR_TYPEERR = 0x800d0107; // 2148335879 +constexpr int ORBIS_REGMGR_ERROR_TYPEERR_I = 0x800d8107; // 2148368647 +constexpr int ORBIS_REGMGR_ERROR_UNINITIALIZED = 0x800d0201; // 2148336129 +constexpr int ORBIS_REGMGR_ERROR_UNINITIALIZED_I = 0x800d8201; // 2148368897 +constexpr int ORBIS_REGMGR_ERROR_VALUEERR = 0x800d0113; // 2148335891 +constexpr int ORBIS_REGMGR_ERROR_VALUEERR_I = 0x800d8113; // 2148368659 + +// RTC +constexpr int ORBIS_RTC_ERROR_BAD_PARSE = 0x80b50007; // 2159345671 +constexpr int ORBIS_RTC_ERROR_INVALID_ARG = 0x80b50004; // 2159345668 +constexpr int ORBIS_RTC_ERROR_INVALID_DAY = 0x80b5000a; // 2159345674 +constexpr int ORBIS_RTC_ERROR_INVALID_HOUR = 0x80b5000b; // 2159345675 +constexpr int ORBIS_RTC_ERROR_INVALID_MICROSECOND = 0x80b5000e; // 2159345678 +constexpr int ORBIS_RTC_ERROR_INVALID_MINUTE = 0x80b5000c; // 2159345676 +constexpr int ORBIS_RTC_ERROR_INVALID_MONTH = 0x80b50009; // 2159345673 +constexpr int ORBIS_RTC_ERROR_INVALID_POINTER = 0x80b50002; // 2159345666 +constexpr int ORBIS_RTC_ERROR_INVALID_SECOND = 0x80b5000d; // 2159345677 +constexpr int ORBIS_RTC_ERROR_INVALID_VALUE = 0x80b50003; // 2159345667 +constexpr int ORBIS_RTC_ERROR_INVALID_YEAR = 0x80b50008; // 2159345672 +constexpr int ORBIS_RTC_ERROR_NO_CLOCK = 0x80b50006; // 2159345670 +constexpr int ORBIS_RTC_ERROR_NOT_INITIALIZED = 0x80b50001; // 2159345665 +constexpr int ORBIS_RTC_ERROR_NOT_SUPPORTED = 0x80b50005; // 2159345669 + +// S3D +constexpr int ORBIS_S3D_CONVERSION_ERROR_C_ARG_HDL_INVALID = 0x80b40007; // 2159280135 +constexpr int ORBIS_S3D_CONVERSION_ERROR_C_ARG_HDL_NULL = 0x80b40006; // 2159280134 +constexpr int ORBIS_S3D_CONVERSION_ERROR_C_SEQ = 0x80b40008; // 2159280136 +constexpr int ORBIS_S3D_CONVERSION_ERROR_E_ARG_CTRL_INVALID = 0x80b4000f; // 2159280143 +constexpr int ORBIS_S3D_CONVERSION_ERROR_E_ARG_CTRL_NULL = 0x80b4000e; // 2159280142 +constexpr int ORBIS_S3D_CONVERSION_ERROR_E_ARG_HDL_INVALID = 0x80b4000b; // 2159280139 +constexpr int ORBIS_S3D_CONVERSION_ERROR_E_ARG_HDL_NULL = 0x80b4000a; // 2159280138 +constexpr int ORBIS_S3D_CONVERSION_ERROR_E_ARG_INPICINFO_INVALID = 0x80b4000d; // 2159280141 +constexpr int ORBIS_S3D_CONVERSION_ERROR_E_ARG_INPICINFO_NULL = 0x80b4000c; // 2159280140 +constexpr int ORBIS_S3D_CONVERSION_ERROR_E_ARG_LEFT_RENDERTARGET_INVALID = 0x80b40015; // 2159280149 +constexpr int ORBIS_S3D_CONVERSION_ERROR_E_ARG_LEFT_RENDERTARGET_NULL = 0x80b40014; // 2159280148 +constexpr int ORBIS_S3D_CONVERSION_ERROR_E_ARG_LEFTPICINFO_INVALID = 0x80b40012; // 2159280146 +constexpr int ORBIS_S3D_CONVERSION_ERROR_E_ARG_OUTPICINFO_NULL = 0x80b40010; // 2159280144 +constexpr int ORBIS_S3D_CONVERSION_ERROR_E_ARG_RIGHT_RENDERTARGET_INVALID = + 0x80b40017; // 2159280151 +constexpr int ORBIS_S3D_CONVERSION_ERROR_E_ARG_RIGHT_RENDERTARGET_NULL = 0x80b40016; // 2159280150 +constexpr int ORBIS_S3D_CONVERSION_ERROR_E_ARG_RIGHTPICINFO_INVALID = 0x80b40013; // 2159280147 +constexpr int ORBIS_S3D_CONVERSION_ERROR_E_ARG_RSRC_INVALID = 0x80b4001a; // 2159280154 +constexpr int ORBIS_S3D_CONVERSION_ERROR_E_ARG_RSRC_NULL = 0x80b40019; // 2159280153 +constexpr int ORBIS_S3D_CONVERSION_ERROR_E_ARG_RSRCMEM_INVALID = 0x80b4001b; // 2159280155 +constexpr int ORBIS_S3D_CONVERSION_ERROR_E_SEQ = 0x80b40018; // 2159280152 +constexpr int ORBIS_S3D_CONVERSION_ERROR_O_ARG_HDL_NULL = 0x80b40004; // 2159280132 +constexpr int ORBIS_S3D_CONVERSION_ERROR_O_ARG_RSRC_INVALID = 0x80b40003; // 2159280131 +constexpr int ORBIS_S3D_CONVERSION_ERROR_O_ARG_RSRC_NULL = 0x80b40002; // 2159280130 +constexpr int ORBIS_S3D_CONVERSION_ERROR_O_ARG_RSRCMEM_INVALID = 0x80b40005; // 2159280133 +constexpr int ORBIS_S3D_CONVERSION_ERROR_Q_ARG_ATTR_NULL = 0x80b40001; // 2159280129 + +// SBL +constexpr int ORBIS_SBL_ERROR_ACLIB_EACCES = 0x800f0d0d; // 2148470029 +constexpr int ORBIS_SBL_ERROR_ACLIB_EAGAIN = 0x800f0d0b; // 2148470027 +constexpr int ORBIS_SBL_ERROR_ACLIB_EAUTHFAIL = 0x800f0d35; // 2148470069 +constexpr int ORBIS_SBL_ERROR_ACLIB_EBADMSG = 0x800f0d2b; // 2148470059 +constexpr int ORBIS_SBL_ERROR_ACLIB_EBUSY = 0x800f0d10; // 2148470032 +constexpr int ORBIS_SBL_ERROR_ACLIB_ECLOCK = 0x800f0d31; // 2148470065 +constexpr int ORBIS_SBL_ERROR_ACLIB_EDATA = 0x800f0d26; // 2148470054 +constexpr int ORBIS_SBL_ERROR_ACLIB_EEXIST = 0x800f0d11; // 2148470033 +constexpr int ORBIS_SBL_ERROR_ACLIB_EFAULT = 0x800f0d0e; // 2148470030 +constexpr int ORBIS_SBL_ERROR_ACLIB_EFMT = 0x800f0d23; // 2148470051 +constexpr int ORBIS_SBL_ERROR_ACLIB_EFORMAT = 0x800f0d34; // 2148470068 +constexpr int ORBIS_SBL_ERROR_ACLIB_EINTR = 0x800f0d04; // 2148470020 +constexpr int ORBIS_SBL_ERROR_ACLIB_EINVAL = 0x800f0d16; // 2148470038 +constexpr int ORBIS_SBL_ERROR_ACLIB_EIO = 0x800f0d05; // 2148470021 +constexpr int ORBIS_SBL_ERROR_ACLIB_EMODE = 0x800f0d3b; // 2148470075 +constexpr int ORBIS_SBL_ERROR_ACLIB_ENEEDAUTH = 0x800f0d2a; // 2148470058 +constexpr int ORBIS_SBL_ERROR_ACLIB_ENOATTR = 0x800f0d2d; // 2148470061 +constexpr int ORBIS_SBL_ERROR_ACLIB_ENODEV = 0x800f0d13; // 2148470035 +constexpr int ORBIS_SBL_ERROR_ACLIB_ENOENT = 0x800f0d02; // 2148470018 +constexpr int ORBIS_SBL_ERROR_ACLIB_ENOEXEC = 0x800f0d08; // 2148470024 +constexpr int ORBIS_SBL_ERROR_ACLIB_ENOMEM = 0x800f0d0c; // 2148470028 +constexpr int ORBIS_SBL_ERROR_ACLIB_ENOSPC = 0x800f0d1c; // 2148470044 +constexpr int ORBIS_SBL_ERROR_ACLIB_ENOTINITIALIZED = 0x800f0d32; // 2148470066 +constexpr int ORBIS_SBL_ERROR_ACLIB_ENOTSUP = 0x800f0d25; // 2148470053 +constexpr int ORBIS_SBL_ERROR_ACLIB_EPATH = 0x800f0d3a; // 2148470074 +constexpr int ORBIS_SBL_ERROR_ACLIB_EPERM = 0x800f0d01; // 2148470017 +constexpr int ORBIS_SBL_ERROR_ACLIB_EPLATFORM = 0x800f0d2f; // 2148470063 +constexpr int ORBIS_SBL_ERROR_ACLIB_EPOWER = 0x800f0d30; // 2148470064 +constexpr int ORBIS_SBL_ERROR_ACLIB_EPURPOSE = 0x800f0d39; // 2148470073 +constexpr int ORBIS_SBL_ERROR_ACLIB_EQAF = 0x800f0d3c; // 2148470076 +constexpr int ORBIS_SBL_ERROR_ACLIB_ERANGE = 0x800f0d22; // 2148470050 +constexpr int ORBIS_SBL_ERROR_ACLIB_EREVOKED = 0x800f0d2c; // 2148470060 +constexpr int ORBIS_SBL_ERROR_ACLIB_ESIGN = 0x800f0d24; // 2148470052 +constexpr int ORBIS_SBL_ERROR_ACLIB_ESRCH = 0x800f0d03; // 2148470019 +constexpr int ORBIS_SBL_ERROR_ACLIB_ESTACK = 0x800f0d29; // 2148470057 +constexpr int ORBIS_SBL_ERROR_ACLIB_ESTAT = 0x800f0d28; // 2148470056 +constexpr int ORBIS_SBL_ERROR_ACLIB_ESYSEXVER = 0x800f0d38; // 2148470072 +constexpr int ORBIS_SBL_ERROR_ACLIB_ESYSVER = 0x800f0d37; // 2148470071 +constexpr int ORBIS_SBL_ERROR_ACLIB_ETIMEDOUT = 0x800f0d27; // 2148470055 +constexpr int ORBIS_SBL_ERROR_ACLIB_EVER = 0x800f0d2e; // 2148470062 +constexpr int ORBIS_SBL_ERROR_ACLIB_EXPIRED = 0x800f0d33; // 2148470067 +constexpr int ORBIS_SBL_ERROR_ACLIB_KEY_DIFFER = 0x800f0d36; // 2148470070 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EACCES = 0x800f0b0d; // 2148469517 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EAGAIN = 0x800f0b0b; // 2148469515 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EAUTHFAIL = 0x800f0b35; // 2148469557 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EBADMSG = 0x800f0b2b; // 2148469547 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EBUSY = 0x800f0b10; // 2148469520 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_ECLOCK = 0x800f0b31; // 2148469553 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EDATA = 0x800f0b26; // 2148469542 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EEXIST = 0x800f0b11; // 2148469521 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EFAULT = 0x800f0b0e; // 2148469518 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EFMT = 0x800f0b23; // 2148469539 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EFORMAT = 0x800f0b34; // 2148469556 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EINTR = 0x800f0b04; // 2148469508 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EINVAL = 0x800f0b16; // 2148469526 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EIO = 0x800f0b05; // 2148469509 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EMODE = 0x800f0b3b; // 2148469563 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_ENEEDAUTH = 0x800f0b2a; // 2148469546 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_ENOATTR = 0x800f0b2d; // 2148469549 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_ENODEV = 0x800f0b13; // 2148469523 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_ENOENT = 0x800f0b02; // 2148469506 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_ENOEXEC = 0x800f0b08; // 2148469512 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_ENOMEM = 0x800f0b0c; // 2148469516 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_ENOSPC = 0x800f0b1c; // 2148469532 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_ENOTINITIALIZED = 0x800f0b32; // 2148469554 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_ENOTSUP = 0x800f0b25; // 2148469541 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EPATH = 0x800f0b3a; // 2148469562 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EPERM = 0x800f0b01; // 2148469505 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EPLATFORM = 0x800f0b2f; // 2148469551 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EPOWER = 0x800f0b30; // 2148469552 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EPURPOSE = 0x800f0b39; // 2148469561 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EQAF = 0x800f0b3c; // 2148469564 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_ERANGE = 0x800f0b22; // 2148469538 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EREVOKED = 0x800f0b2c; // 2148469548 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_ESIGN = 0x800f0b24; // 2148469540 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_ESRCH = 0x800f0b03; // 2148469507 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_ESTACK = 0x800f0b29; // 2148469545 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_ESTAT = 0x800f0b28; // 2148469544 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_ESYSEXVER = 0x800f0b38; // 2148469560 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_ESYSVER = 0x800f0b37; // 2148469559 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_ETIMEDOUT = 0x800f0b27; // 2148469543 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EVER = 0x800f0b2e; // 2148469550 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_EXPIRED = 0x800f0b33; // 2148469555 +constexpr int ORBIS_SBL_ERROR_AUTHMGR_KEY_DIFFER = 0x800f0b36; // 2148469558 +constexpr int ORBIS_SBL_ERROR_COMMON_EACCES = 0x800f000d; // 2148466701 +constexpr int ORBIS_SBL_ERROR_COMMON_EAGAIN = 0x800f000b; // 2148466699 +constexpr int ORBIS_SBL_ERROR_COMMON_EAUTHFAIL = 0x800f0035; // 2148466741 +constexpr int ORBIS_SBL_ERROR_COMMON_EBADMSG = 0x800f002b; // 2148466731 +constexpr int ORBIS_SBL_ERROR_COMMON_EBUSY = 0x800f0010; // 2148466704 +constexpr int ORBIS_SBL_ERROR_COMMON_ECLOCK = 0x800f0031; // 2148466737 +constexpr int ORBIS_SBL_ERROR_COMMON_EDATA = 0x800f0026; // 2148466726 +constexpr int ORBIS_SBL_ERROR_COMMON_EEXIST = 0x800f0011; // 2148466705 +constexpr int ORBIS_SBL_ERROR_COMMON_EFAULT = 0x800f000e; // 2148466702 +constexpr int ORBIS_SBL_ERROR_COMMON_EFMT = 0x800f0023; // 2148466723 +constexpr int ORBIS_SBL_ERROR_COMMON_EFORMAT = 0x800f0034; // 2148466740 +constexpr int ORBIS_SBL_ERROR_COMMON_EINTR = 0x800f0004; // 2148466692 +constexpr int ORBIS_SBL_ERROR_COMMON_EINVAL = 0x800f0016; // 2148466710 +constexpr int ORBIS_SBL_ERROR_COMMON_EIO = 0x800f0005; // 2148466693 +constexpr int ORBIS_SBL_ERROR_COMMON_EMODE = 0x800f003b; // 2148466747 +constexpr int ORBIS_SBL_ERROR_COMMON_ENEEDAUTH = 0x800f002a; // 2148466730 +constexpr int ORBIS_SBL_ERROR_COMMON_ENOATTR = 0x800f002d; // 2148466733 +constexpr int ORBIS_SBL_ERROR_COMMON_ENODEV = 0x800f0013; // 2148466707 +constexpr int ORBIS_SBL_ERROR_COMMON_ENOENT = 0x800f0002; // 2148466690 +constexpr int ORBIS_SBL_ERROR_COMMON_ENOEXEC = 0x800f0008; // 2148466696 +constexpr int ORBIS_SBL_ERROR_COMMON_ENOMEM = 0x800f000c; // 2148466700 +constexpr int ORBIS_SBL_ERROR_COMMON_ENOSPC = 0x800f001c; // 2148466716 +constexpr int ORBIS_SBL_ERROR_COMMON_ENOTINITIALIZED = 0x800f0032; // 2148466738 +constexpr int ORBIS_SBL_ERROR_COMMON_ENOTSUP = 0x800f0025; // 2148466725 +constexpr int ORBIS_SBL_ERROR_COMMON_EPATH = 0x800f003a; // 2148466746 +constexpr int ORBIS_SBL_ERROR_COMMON_EPERM = 0x800f0001; // 2148466689 +constexpr int ORBIS_SBL_ERROR_COMMON_EPLATFORM = 0x800f002f; // 2148466735 +constexpr int ORBIS_SBL_ERROR_COMMON_EPOWER = 0x800f0030; // 2148466736 +constexpr int ORBIS_SBL_ERROR_COMMON_EPURPOSE = 0x800f0039; // 2148466745 +constexpr int ORBIS_SBL_ERROR_COMMON_EQAF = 0x800f003c; // 2148466748 +constexpr int ORBIS_SBL_ERROR_COMMON_ERANGE = 0x800f0022; // 2148466722 +constexpr int ORBIS_SBL_ERROR_COMMON_EREVOKED = 0x800f002c; // 2148466732 +constexpr int ORBIS_SBL_ERROR_COMMON_ESIGN = 0x800f0024; // 2148466724 +constexpr int ORBIS_SBL_ERROR_COMMON_ESRCH = 0x800f0003; // 2148466691 +constexpr int ORBIS_SBL_ERROR_COMMON_ESTACK = 0x800f0029; // 2148466729 +constexpr int ORBIS_SBL_ERROR_COMMON_ESTAT = 0x800f0028; // 2148466728 +constexpr int ORBIS_SBL_ERROR_COMMON_ESYSEXVER = 0x800f0038; // 2148466744 +constexpr int ORBIS_SBL_ERROR_COMMON_ESYSVER = 0x800f0037; // 2148466743 +constexpr int ORBIS_SBL_ERROR_COMMON_ETIMEDOUT = 0x800f0027; // 2148466727 +constexpr int ORBIS_SBL_ERROR_COMMON_EVER = 0x800f002e; // 2148466734 +constexpr int ORBIS_SBL_ERROR_COMMON_EXPIRED = 0x800f0033; // 2148466739 +constexpr int ORBIS_SBL_ERROR_COMMON_KEY_DIFFER = 0x800f0036; // 2148466742 +constexpr int ORBIS_SBL_ERROR_DEVACT_EACCES = 0x800f060d; // 2148468237 +constexpr int ORBIS_SBL_ERROR_DEVACT_EAGAIN = 0x800f060b; // 2148468235 +constexpr int ORBIS_SBL_ERROR_DEVACT_EAUTHFAIL = 0x800f0635; // 2148468277 +constexpr int ORBIS_SBL_ERROR_DEVACT_EBADMSG = 0x800f062b; // 2148468267 +constexpr int ORBIS_SBL_ERROR_DEVACT_EBUSY = 0x800f0610; // 2148468240 +constexpr int ORBIS_SBL_ERROR_DEVACT_ECLOCK = 0x800f0631; // 2148468273 +constexpr int ORBIS_SBL_ERROR_DEVACT_EDATA = 0x800f0626; // 2148468262 +constexpr int ORBIS_SBL_ERROR_DEVACT_EEXIST = 0x800f0611; // 2148468241 +constexpr int ORBIS_SBL_ERROR_DEVACT_EFAULT = 0x800f060e; // 2148468238 +constexpr int ORBIS_SBL_ERROR_DEVACT_EFMT = 0x800f0623; // 2148468259 +constexpr int ORBIS_SBL_ERROR_DEVACT_EFORMAT = 0x800f0634; // 2148468276 +constexpr int ORBIS_SBL_ERROR_DEVACT_EINTR = 0x800f0604; // 2148468228 +constexpr int ORBIS_SBL_ERROR_DEVACT_EINVAL = 0x800f0616; // 2148468246 +constexpr int ORBIS_SBL_ERROR_DEVACT_EIO = 0x800f0605; // 2148468229 +constexpr int ORBIS_SBL_ERROR_DEVACT_EMODE = 0x800f063b; // 2148468283 +constexpr int ORBIS_SBL_ERROR_DEVACT_ENEEDAUTH = 0x800f062a; // 2148468266 +constexpr int ORBIS_SBL_ERROR_DEVACT_ENOATTR = 0x800f062d; // 2148468269 +constexpr int ORBIS_SBL_ERROR_DEVACT_ENODEV = 0x800f0613; // 2148468243 +constexpr int ORBIS_SBL_ERROR_DEVACT_ENOENT = 0x800f0602; // 2148468226 +constexpr int ORBIS_SBL_ERROR_DEVACT_ENOEXEC = 0x800f0608; // 2148468232 +constexpr int ORBIS_SBL_ERROR_DEVACT_ENOMEM = 0x800f060c; // 2148468236 +constexpr int ORBIS_SBL_ERROR_DEVACT_ENOSPC = 0x800f061c; // 2148468252 +constexpr int ORBIS_SBL_ERROR_DEVACT_ENOTINITIALIZED = 0x800f0632; // 2148468274 +constexpr int ORBIS_SBL_ERROR_DEVACT_ENOTSUP = 0x800f0625; // 2148468261 +constexpr int ORBIS_SBL_ERROR_DEVACT_EPATH = 0x800f063a; // 2148468282 +constexpr int ORBIS_SBL_ERROR_DEVACT_EPERM = 0x800f0601; // 2148468225 +constexpr int ORBIS_SBL_ERROR_DEVACT_EPLATFORM = 0x800f062f; // 2148468271 +constexpr int ORBIS_SBL_ERROR_DEVACT_EPOWER = 0x800f0630; // 2148468272 +constexpr int ORBIS_SBL_ERROR_DEVACT_EPURPOSE = 0x800f0639; // 2148468281 +constexpr int ORBIS_SBL_ERROR_DEVACT_EQAF = 0x800f063c; // 2148468284 +constexpr int ORBIS_SBL_ERROR_DEVACT_ERANGE = 0x800f0622; // 2148468258 +constexpr int ORBIS_SBL_ERROR_DEVACT_EREVOKED = 0x800f062c; // 2148468268 +constexpr int ORBIS_SBL_ERROR_DEVACT_ESIGN = 0x800f0624; // 2148468260 +constexpr int ORBIS_SBL_ERROR_DEVACT_ESRCH = 0x800f0603; // 2148468227 +constexpr int ORBIS_SBL_ERROR_DEVACT_ESTACK = 0x800f0629; // 2148468265 +constexpr int ORBIS_SBL_ERROR_DEVACT_ESTAT = 0x800f0628; // 2148468264 +constexpr int ORBIS_SBL_ERROR_DEVACT_ESYSEXVER = 0x800f0638; // 2148468280 +constexpr int ORBIS_SBL_ERROR_DEVACT_ESYSVER = 0x800f0637; // 2148468279 +constexpr int ORBIS_SBL_ERROR_DEVACT_ETIMEDOUT = 0x800f0627; // 2148468263 +constexpr int ORBIS_SBL_ERROR_DEVACT_EVER = 0x800f062e; // 2148468270 +constexpr int ORBIS_SBL_ERROR_DEVACT_EXPIRED = 0x800f0633; // 2148468275 +constexpr int ORBIS_SBL_ERROR_DEVACT_KEY_DIFFER = 0x800f0636; // 2148468278 +constexpr int ORBIS_SBL_ERROR_DONGLE_EACCES = 0x800f0c0d; // 2148469773 +constexpr int ORBIS_SBL_ERROR_DONGLE_EAGAIN = 0x800f0c0b; // 2148469771 +constexpr int ORBIS_SBL_ERROR_DONGLE_EAUTHFAIL = 0x800f0c35; // 2148469813 +constexpr int ORBIS_SBL_ERROR_DONGLE_EBADMSG = 0x800f0c2b; // 2148469803 +constexpr int ORBIS_SBL_ERROR_DONGLE_EBUSY = 0x800f0c10; // 2148469776 +constexpr int ORBIS_SBL_ERROR_DONGLE_ECLOCK = 0x800f0c31; // 2148469809 +constexpr int ORBIS_SBL_ERROR_DONGLE_EDATA = 0x800f0c26; // 2148469798 +constexpr int ORBIS_SBL_ERROR_DONGLE_EEXIST = 0x800f0c11; // 2148469777 +constexpr int ORBIS_SBL_ERROR_DONGLE_EFAULT = 0x800f0c0e; // 2148469774 +constexpr int ORBIS_SBL_ERROR_DONGLE_EFMT = 0x800f0c23; // 2148469795 +constexpr int ORBIS_SBL_ERROR_DONGLE_EFORMAT = 0x800f0c34; // 2148469812 +constexpr int ORBIS_SBL_ERROR_DONGLE_EINTR = 0x800f0c04; // 2148469764 +constexpr int ORBIS_SBL_ERROR_DONGLE_EINVAL = 0x800f0c16; // 2148469782 +constexpr int ORBIS_SBL_ERROR_DONGLE_EIO = 0x800f0c05; // 2148469765 +constexpr int ORBIS_SBL_ERROR_DONGLE_EMODE = 0x800f0c3b; // 2148469819 +constexpr int ORBIS_SBL_ERROR_DONGLE_ENEEDAUTH = 0x800f0c2a; // 2148469802 +constexpr int ORBIS_SBL_ERROR_DONGLE_ENOATTR = 0x800f0c2d; // 2148469805 +constexpr int ORBIS_SBL_ERROR_DONGLE_ENODEV = 0x800f0c13; // 2148469779 +constexpr int ORBIS_SBL_ERROR_DONGLE_ENOENT = 0x800f0c02; // 2148469762 +constexpr int ORBIS_SBL_ERROR_DONGLE_ENOEXEC = 0x800f0c08; // 2148469768 +constexpr int ORBIS_SBL_ERROR_DONGLE_ENOMEM = 0x800f0c0c; // 2148469772 +constexpr int ORBIS_SBL_ERROR_DONGLE_ENOSPC = 0x800f0c1c; // 2148469788 +constexpr int ORBIS_SBL_ERROR_DONGLE_ENOTINITIALIZED = 0x800f0c32; // 2148469810 +constexpr int ORBIS_SBL_ERROR_DONGLE_ENOTSUP = 0x800f0c25; // 2148469797 +constexpr int ORBIS_SBL_ERROR_DONGLE_EPATH = 0x800f0c3a; // 2148469818 +constexpr int ORBIS_SBL_ERROR_DONGLE_EPERM = 0x800f0c01; // 2148469761 +constexpr int ORBIS_SBL_ERROR_DONGLE_EPLATFORM = 0x800f0c2f; // 2148469807 +constexpr int ORBIS_SBL_ERROR_DONGLE_EPOWER = 0x800f0c30; // 2148469808 +constexpr int ORBIS_SBL_ERROR_DONGLE_EPURPOSE = 0x800f0c39; // 2148469817 +constexpr int ORBIS_SBL_ERROR_DONGLE_EQAF = 0x800f0c3c; // 2148469820 +constexpr int ORBIS_SBL_ERROR_DONGLE_ERANGE = 0x800f0c22; // 2148469794 +constexpr int ORBIS_SBL_ERROR_DONGLE_EREVOKED = 0x800f0c2c; // 2148469804 +constexpr int ORBIS_SBL_ERROR_DONGLE_ESIGN = 0x800f0c24; // 2148469796 +constexpr int ORBIS_SBL_ERROR_DONGLE_ESRCH = 0x800f0c03; // 2148469763 +constexpr int ORBIS_SBL_ERROR_DONGLE_ESTACK = 0x800f0c29; // 2148469801 +constexpr int ORBIS_SBL_ERROR_DONGLE_ESTAT = 0x800f0c28; // 2148469800 +constexpr int ORBIS_SBL_ERROR_DONGLE_ESYSEXVER = 0x800f0c38; // 2148469816 +constexpr int ORBIS_SBL_ERROR_DONGLE_ESYSVER = 0x800f0c37; // 2148469815 +constexpr int ORBIS_SBL_ERROR_DONGLE_ETIMEDOUT = 0x800f0c27; // 2148469799 +constexpr int ORBIS_SBL_ERROR_DONGLE_EVER = 0x800f0c2e; // 2148469806 +constexpr int ORBIS_SBL_ERROR_DONGLE_EXPIRED = 0x800f0c33; // 2148469811 +constexpr int ORBIS_SBL_ERROR_DONGLE_KEY_DIFFER = 0x800f0c36; // 2148469814 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EACCES = 0x800f0e0d; // 2148470285 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EAGAIN = 0x800f0e0b; // 2148470283 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EAUTHFAIL = 0x800f0e35; // 2148470325 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EBADMSG = 0x800f0e2b; // 2148470315 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EBUSY = 0x800f0e10; // 2148470288 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_ECLOCK = 0x800f0e31; // 2148470321 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EDATA = 0x800f0e26; // 2148470310 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EEXIST = 0x800f0e11; // 2148470289 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EFAULT = 0x800f0e0e; // 2148470286 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EFMT = 0x800f0e23; // 2148470307 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EFORMAT = 0x800f0e34; // 2148470324 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EINTR = 0x800f0e04; // 2148470276 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EINVAL = 0x800f0e16; // 2148470294 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EIO = 0x800f0e05; // 2148470277 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EMODE = 0x800f0e3b; // 2148470331 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_ENEEDAUTH = 0x800f0e2a; // 2148470314 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_ENOATTR = 0x800f0e2d; // 2148470317 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_ENODEV = 0x800f0e13; // 2148470291 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_ENOENT = 0x800f0e02; // 2148470274 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_ENOEXEC = 0x800f0e08; // 2148470280 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_ENOMEM = 0x800f0e0c; // 2148470284 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_ENOSPC = 0x800f0e1c; // 2148470300 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_ENOTINITIALIZED = 0x800f0e32; // 2148470322 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_ENOTSUP = 0x800f0e25; // 2148470309 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EPATH = 0x800f0e3a; // 2148470330 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EPERM = 0x800f0e01; // 2148470273 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EPLATFORM = 0x800f0e2f; // 2148470319 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EPOWER = 0x800f0e30; // 2148470320 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EPURPOSE = 0x800f0e39; // 2148470329 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EQAF = 0x800f0e3c; // 2148470332 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_ERANGE = 0x800f0e22; // 2148470306 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EREVOKED = 0x800f0e2c; // 2148470316 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_ESIGN = 0x800f0e24; // 2148470308 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_ESRCH = 0x800f0e03; // 2148470275 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_ESTACK = 0x800f0e29; // 2148470313 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_ESTAT = 0x800f0e28; // 2148470312 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_ESYSEXVER = 0x800f0e38; // 2148470328 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_ESYSVER = 0x800f0e37; // 2148470327 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_ETIMEDOUT = 0x800f0e27; // 2148470311 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EVER = 0x800f0e2e; // 2148470318 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_EXPIRED = 0x800f0e33; // 2148470323 +constexpr int ORBIS_SBL_ERROR_DRIVEAUTH_KEY_DIFFER = 0x800f0e36; // 2148470326 +constexpr int ORBIS_SBL_ERROR_DRV_EACCES = 0x800f030d; // 2148467469 +constexpr int ORBIS_SBL_ERROR_DRV_EAGAIN = 0x800f030b; // 2148467467 +constexpr int ORBIS_SBL_ERROR_DRV_EAUTHFAIL = 0x800f0335; // 2148467509 +constexpr int ORBIS_SBL_ERROR_DRV_EBADMSG = 0x800f032b; // 2148467499 +constexpr int ORBIS_SBL_ERROR_DRV_EBUSY = 0x800f0310; // 2148467472 +constexpr int ORBIS_SBL_ERROR_DRV_ECLOCK = 0x800f0331; // 2148467505 +constexpr int ORBIS_SBL_ERROR_DRV_EDATA = 0x800f0326; // 2148467494 +constexpr int ORBIS_SBL_ERROR_DRV_EEXIST = 0x800f0311; // 2148467473 +constexpr int ORBIS_SBL_ERROR_DRV_EFAULT = 0x800f030e; // 2148467470 +constexpr int ORBIS_SBL_ERROR_DRV_EFMT = 0x800f0323; // 2148467491 +constexpr int ORBIS_SBL_ERROR_DRV_EFORMAT = 0x800f0334; // 2148467508 +constexpr int ORBIS_SBL_ERROR_DRV_EINTR = 0x800f0304; // 2148467460 +constexpr int ORBIS_SBL_ERROR_DRV_EINVAL = 0x800f0316; // 2148467478 +constexpr int ORBIS_SBL_ERROR_DRV_EIO = 0x800f0305; // 2148467461 +constexpr int ORBIS_SBL_ERROR_DRV_EMODE = 0x800f033b; // 2148467515 +constexpr int ORBIS_SBL_ERROR_DRV_ENEEDAUTH = 0x800f032a; // 2148467498 +constexpr int ORBIS_SBL_ERROR_DRV_ENOATTR = 0x800f032d; // 2148467501 +constexpr int ORBIS_SBL_ERROR_DRV_ENODEV = 0x800f0313; // 2148467475 +constexpr int ORBIS_SBL_ERROR_DRV_ENOENT = 0x800f0302; // 2148467458 +constexpr int ORBIS_SBL_ERROR_DRV_ENOEXEC = 0x800f0308; // 2148467464 +constexpr int ORBIS_SBL_ERROR_DRV_ENOMEM = 0x800f030c; // 2148467468 +constexpr int ORBIS_SBL_ERROR_DRV_ENOSPC = 0x800f031c; // 2148467484 +constexpr int ORBIS_SBL_ERROR_DRV_ENOTINITIALIZED = 0x800f0332; // 2148467506 +constexpr int ORBIS_SBL_ERROR_DRV_ENOTSUP = 0x800f0325; // 2148467493 +constexpr int ORBIS_SBL_ERROR_DRV_EPATH = 0x800f033a; // 2148467514 +constexpr int ORBIS_SBL_ERROR_DRV_EPERM = 0x800f0301; // 2148467457 +constexpr int ORBIS_SBL_ERROR_DRV_EPLATFORM = 0x800f032f; // 2148467503 +constexpr int ORBIS_SBL_ERROR_DRV_EPOWER = 0x800f0330; // 2148467504 +constexpr int ORBIS_SBL_ERROR_DRV_EPURPOSE = 0x800f0339; // 2148467513 +constexpr int ORBIS_SBL_ERROR_DRV_EQAF = 0x800f033c; // 2148467516 +constexpr int ORBIS_SBL_ERROR_DRV_ERANGE = 0x800f0322; // 2148467490 +constexpr int ORBIS_SBL_ERROR_DRV_EREVOKED = 0x800f032c; // 2148467500 +constexpr int ORBIS_SBL_ERROR_DRV_ESIGN = 0x800f0324; // 2148467492 +constexpr int ORBIS_SBL_ERROR_DRV_ESRCH = 0x800f0303; // 2148467459 +constexpr int ORBIS_SBL_ERROR_DRV_ESTACK = 0x800f0329; // 2148467497 +constexpr int ORBIS_SBL_ERROR_DRV_ESTAT = 0x800f0328; // 2148467496 +constexpr int ORBIS_SBL_ERROR_DRV_ESYSEXVER = 0x800f0338; // 2148467512 +constexpr int ORBIS_SBL_ERROR_DRV_ESYSVER = 0x800f0337; // 2148467511 +constexpr int ORBIS_SBL_ERROR_DRV_ETIMEDOUT = 0x800f0327; // 2148467495 +constexpr int ORBIS_SBL_ERROR_DRV_EVER = 0x800f032e; // 2148467502 +constexpr int ORBIS_SBL_ERROR_DRV_EXPIRED = 0x800f0333; // 2148467507 +constexpr int ORBIS_SBL_ERROR_DRV_KEY_DIFFER = 0x800f0336; // 2148467510 +constexpr int ORBIS_SBL_ERROR_IDATA_EACCES = 0x800f080d; // 2148468749 +constexpr int ORBIS_SBL_ERROR_IDATA_EAGAIN = 0x800f080b; // 2148468747 +constexpr int ORBIS_SBL_ERROR_IDATA_EAUTHFAIL = 0x800f0835; // 2148468789 +constexpr int ORBIS_SBL_ERROR_IDATA_EBADMSG = 0x800f082b; // 2148468779 +constexpr int ORBIS_SBL_ERROR_IDATA_EBUSY = 0x800f0810; // 2148468752 +constexpr int ORBIS_SBL_ERROR_IDATA_ECLOCK = 0x800f0831; // 2148468785 +constexpr int ORBIS_SBL_ERROR_IDATA_EDATA = 0x800f0826; // 2148468774 +constexpr int ORBIS_SBL_ERROR_IDATA_EEXIST = 0x800f0811; // 2148468753 +constexpr int ORBIS_SBL_ERROR_IDATA_EFAULT = 0x800f080e; // 2148468750 +constexpr int ORBIS_SBL_ERROR_IDATA_EFMT = 0x800f0823; // 2148468771 +constexpr int ORBIS_SBL_ERROR_IDATA_EFORMAT = 0x800f0834; // 2148468788 +constexpr int ORBIS_SBL_ERROR_IDATA_EINTR = 0x800f0804; // 2148468740 +constexpr int ORBIS_SBL_ERROR_IDATA_EINVAL = 0x800f0816; // 2148468758 +constexpr int ORBIS_SBL_ERROR_IDATA_EIO = 0x800f0805; // 2148468741 +constexpr int ORBIS_SBL_ERROR_IDATA_EMODE = 0x800f083b; // 2148468795 +constexpr int ORBIS_SBL_ERROR_IDATA_ENEEDAUTH = 0x800f082a; // 2148468778 +constexpr int ORBIS_SBL_ERROR_IDATA_ENOATTR = 0x800f082d; // 2148468781 +constexpr int ORBIS_SBL_ERROR_IDATA_ENODEV = 0x800f0813; // 2148468755 +constexpr int ORBIS_SBL_ERROR_IDATA_ENOENT = 0x800f0802; // 2148468738 +constexpr int ORBIS_SBL_ERROR_IDATA_ENOEXEC = 0x800f0808; // 2148468744 +constexpr int ORBIS_SBL_ERROR_IDATA_ENOMEM = 0x800f080c; // 2148468748 +constexpr int ORBIS_SBL_ERROR_IDATA_ENOSPC = 0x800f081c; // 2148468764 +constexpr int ORBIS_SBL_ERROR_IDATA_ENOTINITIALIZED = 0x800f0832; // 2148468786 +constexpr int ORBIS_SBL_ERROR_IDATA_ENOTSUP = 0x800f0825; // 2148468773 +constexpr int ORBIS_SBL_ERROR_IDATA_EPATH = 0x800f083a; // 2148468794 +constexpr int ORBIS_SBL_ERROR_IDATA_EPERM = 0x800f0801; // 2148468737 +constexpr int ORBIS_SBL_ERROR_IDATA_EPLATFORM = 0x800f082f; // 2148468783 +constexpr int ORBIS_SBL_ERROR_IDATA_EPOWER = 0x800f0830; // 2148468784 +constexpr int ORBIS_SBL_ERROR_IDATA_EPURPOSE = 0x800f0839; // 2148468793 +constexpr int ORBIS_SBL_ERROR_IDATA_EQAF = 0x800f083c; // 2148468796 +constexpr int ORBIS_SBL_ERROR_IDATA_ERANGE = 0x800f0822; // 2148468770 +constexpr int ORBIS_SBL_ERROR_IDATA_EREVOKED = 0x800f082c; // 2148468780 +constexpr int ORBIS_SBL_ERROR_IDATA_ESIGN = 0x800f0824; // 2148468772 +constexpr int ORBIS_SBL_ERROR_IDATA_ESRCH = 0x800f0803; // 2148468739 +constexpr int ORBIS_SBL_ERROR_IDATA_ESTACK = 0x800f0829; // 2148468777 +constexpr int ORBIS_SBL_ERROR_IDATA_ESTAT = 0x800f0828; // 2148468776 +constexpr int ORBIS_SBL_ERROR_IDATA_ESYSEXVER = 0x800f0838; // 2148468792 +constexpr int ORBIS_SBL_ERROR_IDATA_ESYSVER = 0x800f0837; // 2148468791 +constexpr int ORBIS_SBL_ERROR_IDATA_ETIMEDOUT = 0x800f0827; // 2148468775 +constexpr int ORBIS_SBL_ERROR_IDATA_EVER = 0x800f082e; // 2148468782 +constexpr int ORBIS_SBL_ERROR_IDATA_EXPIRED = 0x800f0833; // 2148468787 +constexpr int ORBIS_SBL_ERROR_IDATA_KEY_DIFFER = 0x800f0836; // 2148468790 +constexpr int ORBIS_SBL_ERROR_NPDRM_EACCES = 0x800f0a0d; // 2148469261 +constexpr int ORBIS_SBL_ERROR_NPDRM_EAGAIN = 0x800f0a0b; // 2148469259 +constexpr int ORBIS_SBL_ERROR_NPDRM_EAUTHFAIL = 0x800f0a35; // 2148469301 +constexpr int ORBIS_SBL_ERROR_NPDRM_EBADMSG = 0x800f0a2b; // 2148469291 +constexpr int ORBIS_SBL_ERROR_NPDRM_EBUSY = 0x800f0a10; // 2148469264 +constexpr int ORBIS_SBL_ERROR_NPDRM_ECLOCK = 0x800f0a31; // 2148469297 +constexpr int ORBIS_SBL_ERROR_NPDRM_EDATA = 0x800f0a26; // 2148469286 +constexpr int ORBIS_SBL_ERROR_NPDRM_EEXIST = 0x800f0a11; // 2148469265 +constexpr int ORBIS_SBL_ERROR_NPDRM_EFAULT = 0x800f0a0e; // 2148469262 +constexpr int ORBIS_SBL_ERROR_NPDRM_EFMT = 0x800f0a23; // 2148469283 +constexpr int ORBIS_SBL_ERROR_NPDRM_EFORMAT = 0x800f0a34; // 2148469300 +constexpr int ORBIS_SBL_ERROR_NPDRM_EINTR = 0x800f0a04; // 2148469252 +constexpr int ORBIS_SBL_ERROR_NPDRM_EINVAL = 0x800f0a16; // 2148469270 +constexpr int ORBIS_SBL_ERROR_NPDRM_EIO = 0x800f0a05; // 2148469253 +constexpr int ORBIS_SBL_ERROR_NPDRM_EMODE = 0x800f0a3b; // 2148469307 +constexpr int ORBIS_SBL_ERROR_NPDRM_ENEEDAUTH = 0x800f0a2a; // 2148469290 +constexpr int ORBIS_SBL_ERROR_NPDRM_ENOATTR = 0x800f0a2d; // 2148469293 +constexpr int ORBIS_SBL_ERROR_NPDRM_ENODEV = 0x800f0a13; // 2148469267 +constexpr int ORBIS_SBL_ERROR_NPDRM_ENOENT = 0x800f0a02; // 2148469250 +constexpr int ORBIS_SBL_ERROR_NPDRM_ENOEXEC = 0x800f0a08; // 2148469256 +constexpr int ORBIS_SBL_ERROR_NPDRM_ENOMEM = 0x800f0a0c; // 2148469260 +constexpr int ORBIS_SBL_ERROR_NPDRM_ENOSPC = 0x800f0a1c; // 2148469276 +constexpr int ORBIS_SBL_ERROR_NPDRM_ENOTINITIALIZED = 0x800f0a32; // 2148469298 +constexpr int ORBIS_SBL_ERROR_NPDRM_ENOTSUP = 0x800f0a25; // 2148469285 +constexpr int ORBIS_SBL_ERROR_NPDRM_EPATH = 0x800f0a3a; // 2148469306 +constexpr int ORBIS_SBL_ERROR_NPDRM_EPERM = 0x800f0a01; // 2148469249 +constexpr int ORBIS_SBL_ERROR_NPDRM_EPLATFORM = 0x800f0a2f; // 2148469295 +constexpr int ORBIS_SBL_ERROR_NPDRM_EPOWER = 0x800f0a30; // 2148469296 +constexpr int ORBIS_SBL_ERROR_NPDRM_EPURPOSE = 0x800f0a39; // 2148469305 +constexpr int ORBIS_SBL_ERROR_NPDRM_EQAF = 0x800f0a3c; // 2148469308 +constexpr int ORBIS_SBL_ERROR_NPDRM_ERANGE = 0x800f0a22; // 2148469282 +constexpr int ORBIS_SBL_ERROR_NPDRM_EREVOKED = 0x800f0a2c; // 2148469292 +constexpr int ORBIS_SBL_ERROR_NPDRM_ESIGN = 0x800f0a24; // 2148469284 +constexpr int ORBIS_SBL_ERROR_NPDRM_ESRCH = 0x800f0a03; // 2148469251 +constexpr int ORBIS_SBL_ERROR_NPDRM_ESTACK = 0x800f0a29; // 2148469289 +constexpr int ORBIS_SBL_ERROR_NPDRM_ESTAT = 0x800f0a28; // 2148469288 +constexpr int ORBIS_SBL_ERROR_NPDRM_ESYSEXVER = 0x800f0a38; // 2148469304 +constexpr int ORBIS_SBL_ERROR_NPDRM_ESYSVER = 0x800f0a37; // 2148469303 +constexpr int ORBIS_SBL_ERROR_NPDRM_ETIMEDOUT = 0x800f0a27; // 2148469287 +constexpr int ORBIS_SBL_ERROR_NPDRM_EVER = 0x800f0a2e; // 2148469294 +constexpr int ORBIS_SBL_ERROR_NPDRM_EXPIRED = 0x800f0a33; // 2148469299 +constexpr int ORBIS_SBL_ERROR_NPDRM_KEY_DIFFER = 0x800f0a36; // 2148469302 +constexpr int ORBIS_SBL_ERROR_RNG_EACCES = 0x800f090d; // 2148469005 +constexpr int ORBIS_SBL_ERROR_RNG_EAGAIN = 0x800f090b; // 2148469003 +constexpr int ORBIS_SBL_ERROR_RNG_EAUTHFAIL = 0x800f0935; // 2148469045 +constexpr int ORBIS_SBL_ERROR_RNG_EBADMSG = 0x800f092b; // 2148469035 +constexpr int ORBIS_SBL_ERROR_RNG_EBUSY = 0x800f0910; // 2148469008 +constexpr int ORBIS_SBL_ERROR_RNG_ECLOCK = 0x800f0931; // 2148469041 +constexpr int ORBIS_SBL_ERROR_RNG_EDATA = 0x800f0926; // 2148469030 +constexpr int ORBIS_SBL_ERROR_RNG_EEXIST = 0x800f0911; // 2148469009 +constexpr int ORBIS_SBL_ERROR_RNG_EFAULT = 0x800f090e; // 2148469006 +constexpr int ORBIS_SBL_ERROR_RNG_EFMT = 0x800f0923; // 2148469027 +constexpr int ORBIS_SBL_ERROR_RNG_EFORMAT = 0x800f0934; // 2148469044 +constexpr int ORBIS_SBL_ERROR_RNG_EINTR = 0x800f0904; // 2148468996 +constexpr int ORBIS_SBL_ERROR_RNG_EINVAL = 0x800f0916; // 2148469014 +constexpr int ORBIS_SBL_ERROR_RNG_EIO = 0x800f0905; // 2148468997 +constexpr int ORBIS_SBL_ERROR_RNG_EMODE = 0x800f093b; // 2148469051 +constexpr int ORBIS_SBL_ERROR_RNG_ENEEDAUTH = 0x800f092a; // 2148469034 +constexpr int ORBIS_SBL_ERROR_RNG_ENOATTR = 0x800f092d; // 2148469037 +constexpr int ORBIS_SBL_ERROR_RNG_ENODEV = 0x800f0913; // 2148469011 +constexpr int ORBIS_SBL_ERROR_RNG_ENOENT = 0x800f0902; // 2148468994 +constexpr int ORBIS_SBL_ERROR_RNG_ENOEXEC = 0x800f0908; // 2148469000 +constexpr int ORBIS_SBL_ERROR_RNG_ENOMEM = 0x800f090c; // 2148469004 +constexpr int ORBIS_SBL_ERROR_RNG_ENOSPC = 0x800f091c; // 2148469020 +constexpr int ORBIS_SBL_ERROR_RNG_ENOTINITIALIZED = 0x800f0932; // 2148469042 +constexpr int ORBIS_SBL_ERROR_RNG_ENOTSUP = 0x800f0925; // 2148469029 +constexpr int ORBIS_SBL_ERROR_RNG_EPATH = 0x800f093a; // 2148469050 +constexpr int ORBIS_SBL_ERROR_RNG_EPERM = 0x800f0901; // 2148468993 +constexpr int ORBIS_SBL_ERROR_RNG_EPLATFORM = 0x800f092f; // 2148469039 +constexpr int ORBIS_SBL_ERROR_RNG_EPOWER = 0x800f0930; // 2148469040 +constexpr int ORBIS_SBL_ERROR_RNG_EPURPOSE = 0x800f0939; // 2148469049 +constexpr int ORBIS_SBL_ERROR_RNG_EQAF = 0x800f093c; // 2148469052 +constexpr int ORBIS_SBL_ERROR_RNG_ERANGE = 0x800f0922; // 2148469026 +constexpr int ORBIS_SBL_ERROR_RNG_EREVOKED = 0x800f092c; // 2148469036 +constexpr int ORBIS_SBL_ERROR_RNG_ESIGN = 0x800f0924; // 2148469028 +constexpr int ORBIS_SBL_ERROR_RNG_ESRCH = 0x800f0903; // 2148468995 +constexpr int ORBIS_SBL_ERROR_RNG_ESTACK = 0x800f0929; // 2148469033 +constexpr int ORBIS_SBL_ERROR_RNG_ESTAT = 0x800f0928; // 2148469032 +constexpr int ORBIS_SBL_ERROR_RNG_ESYSEXVER = 0x800f0938; // 2148469048 +constexpr int ORBIS_SBL_ERROR_RNG_ESYSVER = 0x800f0937; // 2148469047 +constexpr int ORBIS_SBL_ERROR_RNG_ETIMEDOUT = 0x800f0927; // 2148469031 +constexpr int ORBIS_SBL_ERROR_RNG_EVER = 0x800f092e; // 2148469038 +constexpr int ORBIS_SBL_ERROR_RNG_EXPIRED = 0x800f0933; // 2148469043 +constexpr int ORBIS_SBL_ERROR_RNG_KEY_DIFFER = 0x800f0936; // 2148469046 +constexpr int ORBIS_SBL_ERROR_SERV_EACCES = 0x800f040d; // 2148467725 +constexpr int ORBIS_SBL_ERROR_SERV_EAGAIN = 0x800f040b; // 2148467723 +constexpr int ORBIS_SBL_ERROR_SERV_EAUTHFAIL = 0x800f0435; // 2148467765 +constexpr int ORBIS_SBL_ERROR_SERV_EBADMSG = 0x800f042b; // 2148467755 +constexpr int ORBIS_SBL_ERROR_SERV_EBUSY = 0x800f0410; // 2148467728 +constexpr int ORBIS_SBL_ERROR_SERV_ECLOCK = 0x800f0431; // 2148467761 +constexpr int ORBIS_SBL_ERROR_SERV_EDATA = 0x800f0426; // 2148467750 +constexpr int ORBIS_SBL_ERROR_SERV_EEXIST = 0x800f0411; // 2148467729 +constexpr int ORBIS_SBL_ERROR_SERV_EFAULT = 0x800f040e; // 2148467726 +constexpr int ORBIS_SBL_ERROR_SERV_EFMT = 0x800f0423; // 2148467747 +constexpr int ORBIS_SBL_ERROR_SERV_EFORMAT = 0x800f0434; // 2148467764 +constexpr int ORBIS_SBL_ERROR_SERV_EINTR = 0x800f0404; // 2148467716 +constexpr int ORBIS_SBL_ERROR_SERV_EINVAL = 0x800f0416; // 2148467734 +constexpr int ORBIS_SBL_ERROR_SERV_EIO = 0x800f0405; // 2148467717 +constexpr int ORBIS_SBL_ERROR_SERV_EMODE = 0x800f043b; // 2148467771 +constexpr int ORBIS_SBL_ERROR_SERV_ENEEDAUTH = 0x800f042a; // 2148467754 +constexpr int ORBIS_SBL_ERROR_SERV_ENOATTR = 0x800f042d; // 2148467757 +constexpr int ORBIS_SBL_ERROR_SERV_ENODEV = 0x800f0413; // 2148467731 +constexpr int ORBIS_SBL_ERROR_SERV_ENOENT = 0x800f0402; // 2148467714 +constexpr int ORBIS_SBL_ERROR_SERV_ENOEXEC = 0x800f0408; // 2148467720 +constexpr int ORBIS_SBL_ERROR_SERV_ENOMEM = 0x800f040c; // 2148467724 +constexpr int ORBIS_SBL_ERROR_SERV_ENOSPC = 0x800f041c; // 2148467740 +constexpr int ORBIS_SBL_ERROR_SERV_ENOTINITIALIZED = 0x800f0432; // 2148467762 +constexpr int ORBIS_SBL_ERROR_SERV_ENOTSUP = 0x800f0425; // 2148467749 +constexpr int ORBIS_SBL_ERROR_SERV_EPATH = 0x800f043a; // 2148467770 +constexpr int ORBIS_SBL_ERROR_SERV_EPERM = 0x800f0401; // 2148467713 +constexpr int ORBIS_SBL_ERROR_SERV_EPLATFORM = 0x800f042f; // 2148467759 +constexpr int ORBIS_SBL_ERROR_SERV_EPOWER = 0x800f0430; // 2148467760 +constexpr int ORBIS_SBL_ERROR_SERV_EPURPOSE = 0x800f0439; // 2148467769 +constexpr int ORBIS_SBL_ERROR_SERV_EQAF = 0x800f043c; // 2148467772 +constexpr int ORBIS_SBL_ERROR_SERV_ERANGE = 0x800f0422; // 2148467746 +constexpr int ORBIS_SBL_ERROR_SERV_EREVOKED = 0x800f042c; // 2148467756 +constexpr int ORBIS_SBL_ERROR_SERV_ESIGN = 0x800f0424; // 2148467748 +constexpr int ORBIS_SBL_ERROR_SERV_ESRCH = 0x800f0403; // 2148467715 +constexpr int ORBIS_SBL_ERROR_SERV_ESTACK = 0x800f0429; // 2148467753 +constexpr int ORBIS_SBL_ERROR_SERV_ESTAT = 0x800f0428; // 2148467752 +constexpr int ORBIS_SBL_ERROR_SERV_ESYSEXVER = 0x800f0438; // 2148467768 +constexpr int ORBIS_SBL_ERROR_SERV_ESYSVER = 0x800f0437; // 2148467767 +constexpr int ORBIS_SBL_ERROR_SERV_ETIMEDOUT = 0x800f0427; // 2148467751 +constexpr int ORBIS_SBL_ERROR_SERV_EVER = 0x800f042e; // 2148467758 +constexpr int ORBIS_SBL_ERROR_SERV_EXPIRED = 0x800f0433; // 2148467763 +constexpr int ORBIS_SBL_ERROR_SERV_KEY_DIFFER = 0x800f0436; // 2148467766 +constexpr int ORBIS_SBL_ERROR_SK_EACCES = 0x800f010d; // 2148466957 +constexpr int ORBIS_SBL_ERROR_SK_EAGAIN = 0x800f010b; // 2148466955 +constexpr int ORBIS_SBL_ERROR_SK_EAUTHFAIL = 0x800f0135; // 2148466997 +constexpr int ORBIS_SBL_ERROR_SK_EBADMSG = 0x800f012b; // 2148466987 +constexpr int ORBIS_SBL_ERROR_SK_EBUSY = 0x800f0110; // 2148466960 +constexpr int ORBIS_SBL_ERROR_SK_ECLOCK = 0x800f0131; // 2148466993 +constexpr int ORBIS_SBL_ERROR_SK_EDATA = 0x800f0126; // 2148466982 +constexpr int ORBIS_SBL_ERROR_SK_EEXIST = 0x800f0111; // 2148466961 +constexpr int ORBIS_SBL_ERROR_SK_EFAULT = 0x800f010e; // 2148466958 +constexpr int ORBIS_SBL_ERROR_SK_EFMT = 0x800f0123; // 2148466979 +constexpr int ORBIS_SBL_ERROR_SK_EFORMAT = 0x800f0134; // 2148466996 +constexpr int ORBIS_SBL_ERROR_SK_EINTR = 0x800f0104; // 2148466948 +constexpr int ORBIS_SBL_ERROR_SK_EINVAL = 0x800f0116; // 2148466966 +constexpr int ORBIS_SBL_ERROR_SK_EIO = 0x800f0105; // 2148466949 +constexpr int ORBIS_SBL_ERROR_SK_EMODE = 0x800f013b; // 2148467003 +constexpr int ORBIS_SBL_ERROR_SK_ENEEDAUTH = 0x800f012a; // 2148466986 +constexpr int ORBIS_SBL_ERROR_SK_ENOATTR = 0x800f012d; // 2148466989 +constexpr int ORBIS_SBL_ERROR_SK_ENODEV = 0x800f0113; // 2148466963 +constexpr int ORBIS_SBL_ERROR_SK_ENOENT = 0x800f0102; // 2148466946 +constexpr int ORBIS_SBL_ERROR_SK_ENOEXEC = 0x800f0108; // 2148466952 +constexpr int ORBIS_SBL_ERROR_SK_ENOMEM = 0x800f010c; // 2148466956 +constexpr int ORBIS_SBL_ERROR_SK_ENOSPC = 0x800f011c; // 2148466972 +constexpr int ORBIS_SBL_ERROR_SK_ENOTINITIALIZED = 0x800f0132; // 2148466994 +constexpr int ORBIS_SBL_ERROR_SK_ENOTSUP = 0x800f0125; // 2148466981 +constexpr int ORBIS_SBL_ERROR_SK_EPATH = 0x800f013a; // 2148467002 +constexpr int ORBIS_SBL_ERROR_SK_EPERM = 0x800f0101; // 2148466945 +constexpr int ORBIS_SBL_ERROR_SK_EPLATFORM = 0x800f012f; // 2148466991 +constexpr int ORBIS_SBL_ERROR_SK_EPOWER = 0x800f0130; // 2148466992 +constexpr int ORBIS_SBL_ERROR_SK_EPURPOSE = 0x800f0139; // 2148467001 +constexpr int ORBIS_SBL_ERROR_SK_EQAF = 0x800f013c; // 2148467004 +constexpr int ORBIS_SBL_ERROR_SK_ERANGE = 0x800f0122; // 2148466978 +constexpr int ORBIS_SBL_ERROR_SK_EREVOKED = 0x800f012c; // 2148466988 +constexpr int ORBIS_SBL_ERROR_SK_ESIGN = 0x800f0124; // 2148466980 +constexpr int ORBIS_SBL_ERROR_SK_ESRCH = 0x800f0103; // 2148466947 +constexpr int ORBIS_SBL_ERROR_SK_ESTACK = 0x800f0129; // 2148466985 +constexpr int ORBIS_SBL_ERROR_SK_ESTAT = 0x800f0128; // 2148466984 +constexpr int ORBIS_SBL_ERROR_SK_ESYSEXVER = 0x800f0138; // 2148467000 +constexpr int ORBIS_SBL_ERROR_SK_ESYSVER = 0x800f0137; // 2148466999 +constexpr int ORBIS_SBL_ERROR_SK_ETIMEDOUT = 0x800f0127; // 2148466983 +constexpr int ORBIS_SBL_ERROR_SK_EVER = 0x800f012e; // 2148466990 +constexpr int ORBIS_SBL_ERROR_SK_EXPIRED = 0x800f0133; // 2148466995 +constexpr int ORBIS_SBL_ERROR_SK_KEY_DIFFER = 0x800f0136; // 2148466998 +constexpr int ORBIS_SBL_ERROR_SL_EACCES = 0x800f020d; // 2148467213 +constexpr int ORBIS_SBL_ERROR_SL_EAGAIN = 0x800f020b; // 2148467211 +constexpr int ORBIS_SBL_ERROR_SL_EAUTHFAIL = 0x800f0235; // 2148467253 +constexpr int ORBIS_SBL_ERROR_SL_EBADMSG = 0x800f022b; // 2148467243 +constexpr int ORBIS_SBL_ERROR_SL_EBUSY = 0x800f0210; // 2148467216 +constexpr int ORBIS_SBL_ERROR_SL_ECLOCK = 0x800f0231; // 2148467249 +constexpr int ORBIS_SBL_ERROR_SL_EDATA = 0x800f0226; // 2148467238 +constexpr int ORBIS_SBL_ERROR_SL_EEXIST = 0x800f0211; // 2148467217 +constexpr int ORBIS_SBL_ERROR_SL_EFAULT = 0x800f020e; // 2148467214 +constexpr int ORBIS_SBL_ERROR_SL_EFMT = 0x800f0223; // 2148467235 +constexpr int ORBIS_SBL_ERROR_SL_EFORMAT = 0x800f0234; // 2148467252 +constexpr int ORBIS_SBL_ERROR_SL_EINTR = 0x800f0204; // 2148467204 +constexpr int ORBIS_SBL_ERROR_SL_EINVAL = 0x800f0216; // 2148467222 +constexpr int ORBIS_SBL_ERROR_SL_EIO = 0x800f0205; // 2148467205 +constexpr int ORBIS_SBL_ERROR_SL_EMODE = 0x800f023b; // 2148467259 +constexpr int ORBIS_SBL_ERROR_SL_ENEEDAUTH = 0x800f022a; // 2148467242 +constexpr int ORBIS_SBL_ERROR_SL_ENOATTR = 0x800f022d; // 2148467245 +constexpr int ORBIS_SBL_ERROR_SL_ENODEV = 0x800f0213; // 2148467219 +constexpr int ORBIS_SBL_ERROR_SL_ENOENT = 0x800f0202; // 2148467202 +constexpr int ORBIS_SBL_ERROR_SL_ENOEXEC = 0x800f0208; // 2148467208 +constexpr int ORBIS_SBL_ERROR_SL_ENOMEM = 0x800f020c; // 2148467212 +constexpr int ORBIS_SBL_ERROR_SL_ENOSPC = 0x800f021c; // 2148467228 +constexpr int ORBIS_SBL_ERROR_SL_ENOTINITIALIZED = 0x800f0232; // 2148467250 +constexpr int ORBIS_SBL_ERROR_SL_ENOTSUP = 0x800f0225; // 2148467237 +constexpr int ORBIS_SBL_ERROR_SL_EPATH = 0x800f023a; // 2148467258 +constexpr int ORBIS_SBL_ERROR_SL_EPERM = 0x800f0201; // 2148467201 +constexpr int ORBIS_SBL_ERROR_SL_EPLATFORM = 0x800f022f; // 2148467247 +constexpr int ORBIS_SBL_ERROR_SL_EPOWER = 0x800f0230; // 2148467248 +constexpr int ORBIS_SBL_ERROR_SL_EPURPOSE = 0x800f0239; // 2148467257 +constexpr int ORBIS_SBL_ERROR_SL_EQAF = 0x800f023c; // 2148467260 +constexpr int ORBIS_SBL_ERROR_SL_ERANGE = 0x800f0222; // 2148467234 +constexpr int ORBIS_SBL_ERROR_SL_EREVOKED = 0x800f022c; // 2148467244 +constexpr int ORBIS_SBL_ERROR_SL_ESIGN = 0x800f0224; // 2148467236 +constexpr int ORBIS_SBL_ERROR_SL_ESRCH = 0x800f0203; // 2148467203 +constexpr int ORBIS_SBL_ERROR_SL_ESTACK = 0x800f0229; // 2148467241 +constexpr int ORBIS_SBL_ERROR_SL_ESTAT = 0x800f0228; // 2148467240 +constexpr int ORBIS_SBL_ERROR_SL_ESYSEXVER = 0x800f0238; // 2148467256 +constexpr int ORBIS_SBL_ERROR_SL_ESYSVER = 0x800f0237; // 2148467255 +constexpr int ORBIS_SBL_ERROR_SL_ETIMEDOUT = 0x800f0227; // 2148467239 +constexpr int ORBIS_SBL_ERROR_SL_EVER = 0x800f022e; // 2148467246 +constexpr int ORBIS_SBL_ERROR_SL_EXPIRED = 0x800f0233; // 2148467251 +constexpr int ORBIS_SBL_ERROR_SL_KEY_DIFFER = 0x800f0236; // 2148467254 +constexpr int ORBIS_SBL_ERROR_SRTC_EACCES = 0x800f050d; // 2148467981 +constexpr int ORBIS_SBL_ERROR_SRTC_EAGAIN = 0x800f050b; // 2148467979 +constexpr int ORBIS_SBL_ERROR_SRTC_EAUTHFAIL = 0x800f0535; // 2148468021 +constexpr int ORBIS_SBL_ERROR_SRTC_EBADMSG = 0x800f052b; // 2148468011 +constexpr int ORBIS_SBL_ERROR_SRTC_EBUSY = 0x800f0510; // 2148467984 +constexpr int ORBIS_SBL_ERROR_SRTC_ECLOCK = 0x800f0531; // 2148468017 +constexpr int ORBIS_SBL_ERROR_SRTC_EDATA = 0x800f0526; // 2148468006 +constexpr int ORBIS_SBL_ERROR_SRTC_EEXIST = 0x800f0511; // 2148467985 +constexpr int ORBIS_SBL_ERROR_SRTC_EFAULT = 0x800f050e; // 2148467982 +constexpr int ORBIS_SBL_ERROR_SRTC_EFMT = 0x800f0523; // 2148468003 +constexpr int ORBIS_SBL_ERROR_SRTC_EFORMAT = 0x800f0534; // 2148468020 +constexpr int ORBIS_SBL_ERROR_SRTC_EINTR = 0x800f0504; // 2148467972 +constexpr int ORBIS_SBL_ERROR_SRTC_EINVAL = 0x800f0516; // 2148467990 +constexpr int ORBIS_SBL_ERROR_SRTC_EIO = 0x800f0505; // 2148467973 +constexpr int ORBIS_SBL_ERROR_SRTC_EMODE = 0x800f053b; // 2148468027 +constexpr int ORBIS_SBL_ERROR_SRTC_ENEEDAUTH = 0x800f052a; // 2148468010 +constexpr int ORBIS_SBL_ERROR_SRTC_ENOATTR = 0x800f052d; // 2148468013 +constexpr int ORBIS_SBL_ERROR_SRTC_ENODEV = 0x800f0513; // 2148467987 +constexpr int ORBIS_SBL_ERROR_SRTC_ENOENT = 0x800f0502; // 2148467970 +constexpr int ORBIS_SBL_ERROR_SRTC_ENOEXEC = 0x800f0508; // 2148467976 +constexpr int ORBIS_SBL_ERROR_SRTC_ENOMEM = 0x800f050c; // 2148467980 +constexpr int ORBIS_SBL_ERROR_SRTC_ENOSPC = 0x800f051c; // 2148467996 +constexpr int ORBIS_SBL_ERROR_SRTC_ENOTINITIALIZED = 0x800f0532; // 2148468018 +constexpr int ORBIS_SBL_ERROR_SRTC_ENOTSUP = 0x800f0525; // 2148468005 +constexpr int ORBIS_SBL_ERROR_SRTC_EPATH = 0x800f053a; // 2148468026 +constexpr int ORBIS_SBL_ERROR_SRTC_EPERM = 0x800f0501; // 2148467969 +constexpr int ORBIS_SBL_ERROR_SRTC_EPLATFORM = 0x800f052f; // 2148468015 +constexpr int ORBIS_SBL_ERROR_SRTC_EPOWER = 0x800f0530; // 2148468016 +constexpr int ORBIS_SBL_ERROR_SRTC_EPURPOSE = 0x800f0539; // 2148468025 +constexpr int ORBIS_SBL_ERROR_SRTC_EQAF = 0x800f053c; // 2148468028 +constexpr int ORBIS_SBL_ERROR_SRTC_ERANGE = 0x800f0522; // 2148468002 +constexpr int ORBIS_SBL_ERROR_SRTC_EREVOKED = 0x800f052c; // 2148468012 +constexpr int ORBIS_SBL_ERROR_SRTC_ESIGN = 0x800f0524; // 2148468004 +constexpr int ORBIS_SBL_ERROR_SRTC_ESRCH = 0x800f0503; // 2148467971 +constexpr int ORBIS_SBL_ERROR_SRTC_ESTACK = 0x800f0529; // 2148468009 +constexpr int ORBIS_SBL_ERROR_SRTC_ESTAT = 0x800f0528; // 2148468008 +constexpr int ORBIS_SBL_ERROR_SRTC_ESYSEXVER = 0x800f0538; // 2148468024 +constexpr int ORBIS_SBL_ERROR_SRTC_ESYSVER = 0x800f0537; // 2148468023 +constexpr int ORBIS_SBL_ERROR_SRTC_ETIMEDOUT = 0x800f0527; // 2148468007 +constexpr int ORBIS_SBL_ERROR_SRTC_EVER = 0x800f052e; // 2148468014 +constexpr int ORBIS_SBL_ERROR_SRTC_EXPIRED = 0x800f0533; // 2148468019 +constexpr int ORBIS_SBL_ERROR_SRTC_KEY_DIFFER = 0x800f0536; // 2148468022 +constexpr int ORBIS_SBL_ERROR_VTRM_EACCES = 0x800f070d; // 2148468493 +constexpr int ORBIS_SBL_ERROR_VTRM_EAGAIN = 0x800f070b; // 2148468491 +constexpr int ORBIS_SBL_ERROR_VTRM_EAUTHFAIL = 0x800f0735; // 2148468533 +constexpr int ORBIS_SBL_ERROR_VTRM_EBADMSG = 0x800f072b; // 2148468523 +constexpr int ORBIS_SBL_ERROR_VTRM_EBUSY = 0x800f0710; // 2148468496 +constexpr int ORBIS_SBL_ERROR_VTRM_ECLOCK = 0x800f0731; // 2148468529 +constexpr int ORBIS_SBL_ERROR_VTRM_EDATA = 0x800f0726; // 2148468518 +constexpr int ORBIS_SBL_ERROR_VTRM_EEXIST = 0x800f0711; // 2148468497 +constexpr int ORBIS_SBL_ERROR_VTRM_EFAULT = 0x800f070e; // 2148468494 +constexpr int ORBIS_SBL_ERROR_VTRM_EFMT = 0x800f0723; // 2148468515 +constexpr int ORBIS_SBL_ERROR_VTRM_EFORMAT = 0x800f0734; // 2148468532 +constexpr int ORBIS_SBL_ERROR_VTRM_EINTR = 0x800f0704; // 2148468484 +constexpr int ORBIS_SBL_ERROR_VTRM_EINVAL = 0x800f0716; // 2148468502 +constexpr int ORBIS_SBL_ERROR_VTRM_EIO = 0x800f0705; // 2148468485 +constexpr int ORBIS_SBL_ERROR_VTRM_EMODE = 0x800f073b; // 2148468539 +constexpr int ORBIS_SBL_ERROR_VTRM_ENEEDAUTH = 0x800f072a; // 2148468522 +constexpr int ORBIS_SBL_ERROR_VTRM_ENOATTR = 0x800f072d; // 2148468525 +constexpr int ORBIS_SBL_ERROR_VTRM_ENODEV = 0x800f0713; // 2148468499 +constexpr int ORBIS_SBL_ERROR_VTRM_ENOENT = 0x800f0702; // 2148468482 +constexpr int ORBIS_SBL_ERROR_VTRM_ENOEXEC = 0x800f0708; // 2148468488 +constexpr int ORBIS_SBL_ERROR_VTRM_ENOMEM = 0x800f070c; // 2148468492 +constexpr int ORBIS_SBL_ERROR_VTRM_ENOSPC = 0x800f071c; // 2148468508 +constexpr int ORBIS_SBL_ERROR_VTRM_ENOTINITIALIZED = 0x800f0732; // 2148468530 +constexpr int ORBIS_SBL_ERROR_VTRM_ENOTSUP = 0x800f0725; // 2148468517 +constexpr int ORBIS_SBL_ERROR_VTRM_EPATH = 0x800f073a; // 2148468538 +constexpr int ORBIS_SBL_ERROR_VTRM_EPERM = 0x800f0701; // 2148468481 +constexpr int ORBIS_SBL_ERROR_VTRM_EPLATFORM = 0x800f072f; // 2148468527 +constexpr int ORBIS_SBL_ERROR_VTRM_EPOWER = 0x800f0730; // 2148468528 +constexpr int ORBIS_SBL_ERROR_VTRM_EPURPOSE = 0x800f0739; // 2148468537 +constexpr int ORBIS_SBL_ERROR_VTRM_EQAF = 0x800f073c; // 2148468540 +constexpr int ORBIS_SBL_ERROR_VTRM_ERANGE = 0x800f0722; // 2148468514 +constexpr int ORBIS_SBL_ERROR_VTRM_EREVOKED = 0x800f072c; // 2148468524 +constexpr int ORBIS_SBL_ERROR_VTRM_ESIGN = 0x800f0724; // 2148468516 +constexpr int ORBIS_SBL_ERROR_VTRM_ESRCH = 0x800f0703; // 2148468483 +constexpr int ORBIS_SBL_ERROR_VTRM_ESTACK = 0x800f0729; // 2148468521 +constexpr int ORBIS_SBL_ERROR_VTRM_ESTAT = 0x800f0728; // 2148468520 +constexpr int ORBIS_SBL_ERROR_VTRM_ESYSEXVER = 0x800f0738; // 2148468536 +constexpr int ORBIS_SBL_ERROR_VTRM_ESYSVER = 0x800f0737; // 2148468535 +constexpr int ORBIS_SBL_ERROR_VTRM_ETIMEDOUT = 0x800f0727; // 2148468519 +constexpr int ORBIS_SBL_ERROR_VTRM_EVER = 0x800f072e; // 2148468526 +constexpr int ORBIS_SBL_ERROR_VTRM_EXPIRED = 0x800f0733; // 2148468531 +constexpr int ORBIS_SBL_ERROR_VTRM_KEY_DIFFER = 0x800f0736; // 2148468534 + +// SFMT +constexpr int ORBIS_SFMT11213_ERROR_INVALID_POINTER = 0x80490600; // 2152269312 +constexpr int ORBIS_SFMT11213_ERROR_INVALID_SIZE = 0x80490602; // 2152269314 +constexpr int ORBIS_SFMT11213_ERROR_INVALID_STATE = 0x80490601; // 2152269313 +constexpr int ORBIS_SFMT1279_ERROR_INVALID_POINTER = 0x80490300; // 2152268544 +constexpr int ORBIS_SFMT1279_ERROR_INVALID_SIZE = 0x80490302; // 2152268546 +constexpr int ORBIS_SFMT1279_ERROR_INVALID_STATE = 0x80490301; // 2152268545 +constexpr int ORBIS_SFMT132049_ERROR_INVALID_POINTER = 0x80490a00; // 2152270336 +constexpr int ORBIS_SFMT132049_ERROR_INVALID_SIZE = 0x80490a02; // 2152270338 +constexpr int ORBIS_SFMT132049_ERROR_INVALID_STATE = 0x80490a01; // 2152270337 +constexpr int ORBIS_SFMT19937_ERROR_INVALID_POINTER = 0x80490700; // 2152269568 +constexpr int ORBIS_SFMT19937_ERROR_INVALID_SIZE = 0x80490702; // 2152269570 +constexpr int ORBIS_SFMT19937_ERROR_INVALID_STATE = 0x80490701; // 2152269569 +constexpr int ORBIS_SFMT216091_ERROR_INVALID_POINTER = 0x80490b00; // 2152270592 +constexpr int ORBIS_SFMT216091_ERROR_INVALID_SIZE = 0x80490b02; // 2152270594 +constexpr int ORBIS_SFMT216091_ERROR_INVALID_STATE = 0x80490b01; // 2152270593 +constexpr int ORBIS_SFMT2281_ERROR_INVALID_POINTER = 0x80490400; // 2152268800 +constexpr int ORBIS_SFMT2281_ERROR_INVALID_SIZE = 0x80490402; // 2152268802 +constexpr int ORBIS_SFMT2281_ERROR_INVALID_STATE = 0x80490401; // 2152268801 +constexpr int ORBIS_SFMT4253_ERROR_INVALID_POINTER = 0x80490500; // 2152269056 +constexpr int ORBIS_SFMT4253_ERROR_INVALID_SIZE = 0x80490502; // 2152269058 +constexpr int ORBIS_SFMT4253_ERROR_INVALID_STATE = 0x80490501; // 2152269057 +constexpr int ORBIS_SFMT44497_ERROR_INVALID_POINTER = 0x80490800; // 2152269824 +constexpr int ORBIS_SFMT44497_ERROR_INVALID_SIZE = 0x80490802; // 2152269826 +constexpr int ORBIS_SFMT44497_ERROR_INVALID_STATE = 0x80490801; // 2152269825 +constexpr int ORBIS_SFMT607_ERROR_INVALID_POINTER = 0x80490200; // 2152268288 +constexpr int ORBIS_SFMT607_ERROR_INVALID_SIZE = 0x80490202; // 2152268290 +constexpr int ORBIS_SFMT607_ERROR_INVALID_STATE = 0x80490201; // 2152268289 +constexpr int ORBIS_SFMT86243_ERROR_INVALID_POINTER = 0x80490900; // 2152270080 +constexpr int ORBIS_SFMT86243_ERROR_INVALID_SIZE = 0x80490902; // 2152270082 +constexpr int ORBIS_SFMT86243_ERROR_INVALID_STATE = 0x80490901; // 2152270081 + +// SHA +constexpr int ORBIS_SHA0_ERROR_INVALID_POINTER = 0x80480200; // 2152202752 +constexpr int ORBIS_SHA0_ERROR_INVALID_STATE = 0x80480201; // 2152202753 +constexpr int ORBIS_SHA0_ERROR_UNINITIALIZED_CONTEXT = 0x80480202; // 2152202754 +constexpr int ORBIS_SHA1_ERROR_INVALID_POINTER = 0x80480300; // 2152203008 +constexpr int ORBIS_SHA1_ERROR_INVALID_STATE = 0x80480301; // 2152203009 +constexpr int ORBIS_SHA1_ERROR_UNINITIALIZED_CONTEXT = 0x80480302; // 2152203010 +constexpr int ORBIS_SHA224_ERROR_INVALID_POINTER = 0x80480400; // 2152203264 +constexpr int ORBIS_SHA224_ERROR_INVALID_STATE = 0x80480401; // 2152203265 +constexpr int ORBIS_SHA224_ERROR_UNINITIALIZED_CONTEXT = 0x80480402; // 2152203266 +constexpr int ORBIS_SHA256_ERROR_INVALID_POINTER = 0x80480500; // 2152203520 +constexpr int ORBIS_SHA256_ERROR_INVALID_STATE = 0x80480501; // 2152203521 +constexpr int ORBIS_SHA256_ERROR_UNINITIALIZED_CONTEXT = 0x80480502; // 2152203522 +constexpr int ORBIS_SHA384_ERROR_INVALID_POINTER = 0x80480600; // 2152203776 +constexpr int ORBIS_SHA384_ERROR_INVALID_STATE = 0x80480601; // 2152203777 +constexpr int ORBIS_SHA384_ERROR_UNINITIALIZED_CONTEXT = 0x80480602; // 2152203778 +constexpr int ORBIS_SHA512_ERROR_INVALID_POINTER = 0x80480700; // 2152204032 +constexpr int ORBIS_SHA512_ERROR_INVALID_STATE = 0x80480701; // 2152204033 +constexpr int ORBIS_SHA512_ERROR_UNINITIALIZED_CONTEXT = 0x80480702; // 2152204034 +constexpr int ORBIS_SHA512T_ERROR_INVALID_DIGEST_SIZE = 0x80480802; // 2152204290 +constexpr int ORBIS_SHA512T_ERROR_INVALID_POINTER = 0x80480800; // 2152204288 +constexpr int ORBIS_SHA512T_ERROR_INVALID_STATE = 0x80480801; // 2152204289 +constexpr int ORBIS_SHA512T_ERROR_UNINITIALIZED_CONTEXT = 0x80480803; // 2152204291 + +// SHADER_BINARY +constexpr int ORBIS_SHADER_BINARY_ERROR_INVALID_ADDR = 0x80910001; // 2156986369 +constexpr int ORBIS_SHADER_BINARY_ERROR_INVALID_SIZE = 0x80910002; // 2156986370 + +// SULPHA +constexpr int ORBIS_SULPHA_ERROR_ALREADY_INITIALIZED = 0x804d0001; // 2152529921 +constexpr int ORBIS_SULPHA_ERROR_CAPTURE_STARTED = 0x804d000b; // 2152529931 +constexpr int ORBIS_SULPHA_ERROR_CONNECTION = 0x804d0007; // 2152529927 +constexpr int ORBIS_SULPHA_ERROR_CONNECTION_TIMEOUT = 0x804d000d; // 2152529933 +constexpr int ORBIS_SULPHA_ERROR_INVALID_AGENT = 0x804d0009; // 2152529929 +constexpr int ORBIS_SULPHA_ERROR_INVALID_ALIGNMENT = 0x804d0004; // 2152529924 +constexpr int ORBIS_SULPHA_ERROR_INVALID_ARG = 0x804d0003; // 2152529923 +constexpr int ORBIS_SULPHA_ERROR_NETWORK_OWNERSHIP = 0x804d0008; // 2152529928 +constexpr int ORBIS_SULPHA_ERROR_NOT_CONNECTED = 0x804d000a; // 2152529930 +constexpr int ORBIS_SULPHA_ERROR_OUT_OF_BOOKMARKS = 0x804d000c; // 2152529932 +constexpr int ORBIS_SULPHA_ERROR_OUT_OF_MEMORY = 0x804d0005; // 2152529925 +constexpr int ORBIS_SULPHA_ERROR_UNINITIALIZED = 0x804d0002; // 2152529922 +constexpr int ORBIS_SULPHA_ERROR_UNSUPPORTED = 0x804d0006; // 2152529926 + +// SYSCORE +constexpr int ORBIS_SYSCORE_ERROR_ALREADY_RUNNING = 0x80aa000f; // 2158624783 +constexpr int ORBIS_SYSCORE_ERROR_APPLICATION_ALREADY_RESUMED = 0x80aa0014; // 2158624788 +constexpr int ORBIS_SYSCORE_ERROR_APPLICATION_ALREADY_SUSPENDED = 0x80aa0013; // 2158624787 +constexpr int ORBIS_SYSCORE_ERROR_APPLICATION_NOT_FOUND = 0x80aa0015; // 2158624789 +constexpr int ORBIS_SYSCORE_ERROR_APPLICATION_SUSPENDED = 0x80aa0011; // 2158624785 +constexpr int ORBIS_SYSCORE_ERROR_DEVKIT_EXPIRED = 0x80aa000e; // 2158624782 +constexpr int ORBIS_SYSCORE_ERROR_INVALID = 0x80aa0002; // 2158624770 +constexpr int ORBIS_SYSCORE_ERROR_INVALID_TITLE_ID = 0x80aa0012; // 2158624786 +constexpr int ORBIS_SYSCORE_ERROR_LNC_INVALID_STATE = 0x80aa000a; // 2158624778 +constexpr int ORBIS_SYSCORE_ERROR_MAX_APP_NUM = 0x80aa0007; // 2158624775 +constexpr int ORBIS_SYSCORE_ERROR_MAX_PROCESS_NUM_PER_APP = 0x80aa0008; // 2158624776 +constexpr int ORBIS_SYSCORE_ERROR_NO_LOGIN_USER = 0x80aa000d; // 2158624781 +constexpr int ORBIS_SYSCORE_ERROR_NOEXIST_APP = 0x80aa000c; // 2158624780 +constexpr int ORBIS_SYSCORE_ERROR_NOEXIST_PROCESS = 0x80aa0010; // 2158624784 +constexpr int ORBIS_SYSCORE_ERROR_NOT_INITIALIZE = 0x80aa0004; // 2158624772 +constexpr int ORBIS_SYSCORE_ERROR_NULL = 0x80aa0001; // 2158624769 +constexpr int ORBIS_SYSCORE_ERROR_PERMISSION = 0x80aa000b; // 2158624779 +constexpr int ORBIS_SYSCORE_ERROR_PROCESS_SETUP_WORKDIR = 0x80aa0009; // 2158624777 +constexpr int ORBIS_SYSCORE_ERROR_QUEUE_EMPTY = 0x80aa0005; // 2158624773 +constexpr int ORBIS_SYSCORE_ERROR_QUEUE_FULL = 0x80aa0006; // 2158624774 +constexpr int ORBIS_SYSCORE_ERROR_STATE = 0x80aa0003; // 2158624771 + +// SYSMODULE +constexpr int ORBIS_SYSMODULE_ERROR_FATAL = 0x805a10ff; // 2153386239 +constexpr int ORBIS_SYSMODULE_ERROR_INVALID_VALUE = 0x805a1000; // 2153385984 +constexpr int ORBIS_SYSMODULE_ERROR_UNLOADED = 0x805a1001; // 2153385985 + +// SYSTEM_GESTURE +constexpr int ORBIS_SYSTEM_GESTURE_ERROR_ALREADY_OPENED = 0x8089000a; // 2156462090 +constexpr int ORBIS_SYSTEM_GESTURE_ERROR_EVENT_DATA_NOT_FOUND = 0x80890005; // 2156462085 +constexpr int ORBIS_SYSTEM_GESTURE_ERROR_INDEX_OUT_OF_ARRAY = 0x80890004; // 2156462084 +constexpr int ORBIS_SYSTEM_GESTURE_ERROR_INVALID_ARGUMENT = 0x80890001; // 2156462081 +constexpr int ORBIS_SYSTEM_GESTURE_ERROR_INVALID_HANDLE = 0x80890006; // 2156462086 +constexpr int ORBIS_SYSTEM_GESTURE_ERROR_INVALID_TOUCH_AREA = 0x80890007; // 2156462087 +constexpr int ORBIS_SYSTEM_GESTURE_ERROR_NO_TOUCH_AREA_INFORMATION = 0x80890008; // 2156462088 +constexpr int ORBIS_SYSTEM_GESTURE_ERROR_NOT_INITIALIZED = 0x80890003; // 2156462083 +constexpr int ORBIS_SYSTEM_GESTURE_ERROR_NOT_SUPPORTED_GESTURE = 0x80890002; // 2156462082 +constexpr int ORBIS_SYSTEM_GESTURE_ERROR_OUT_OF_RECOGNIZER = 0x80890009; // 2156462089 + +// TEXTURE_TOOL +constexpr int ORBIS_TEXTURE_TOOL_ERROR_COMPUTE_COMPRESS_ALLOCATE_FAILURE_FROM_DCB = + 0x80d70005; // 2161573893 +constexpr int ORBIS_TEXTURE_TOOL_ERROR_COMPUTE_COMPRESS_BUFFER_SIZE = 0x80d70002; // 2161573890 +constexpr int ORBIS_TEXTURE_TOOL_ERROR_COMPUTE_COMPRESS_INVALID_BC_ENCODER = + 0x80d70001; // 2161573889 +constexpr int ORBIS_TEXTURE_TOOL_ERROR_COMPUTE_COMPRESS_INVALID_FORMAT = 0x80d70000; // 2161573888 +constexpr int ORBIS_TEXTURE_TOOL_ERROR_COMPUTE_COMPRESS_INVALID_POINTER_OR_ENCODER = + 0x80d70003; // 2161573891 +constexpr int ORBIS_TEXTURE_TOOL_ERROR_COMPUTE_COMPRESS_INVALID_TEXTURE = 0x80d70004; // 2161573892 +constexpr int ORBIS_TEXTURE_TOOL_ERROR_GNF_ALIGNMENT_OUT_OF_RANGE = 0x80d70105; // 2161574149 +constexpr int ORBIS_TEXTURE_TOOL_ERROR_GNF_CANNOT_OPEN_FILE_FOR_READ = 0x80d70107; // 2161574151 +constexpr int ORBIS_TEXTURE_TOOL_ERROR_GNF_CONTENTS_SIZE_MISMATCH = 0x80d70106; // 2161574150 +constexpr int ORBIS_TEXTURE_TOOL_ERROR_GNF_CORRUPT_HEADER = 0x80d70102; // 2161574146 +constexpr int ORBIS_TEXTURE_TOOL_ERROR_GNF_FILE_IS_TOO_SHORT = 0x80d70103; // 2161574147 +constexpr int ORBIS_TEXTURE_TOOL_ERROR_GNF_INVALID_POINTER = 0x80d70100; // 2161574144 +constexpr int ORBIS_TEXTURE_TOOL_ERROR_GNF_NOT_GNF_FILE = 0x80d70101; // 2161574145 +constexpr int ORBIS_TEXTURE_TOOL_ERROR_GNF_PIXEL_DATA_SIZE_MISMATCH = 0x80d70108; // 2161574152 +constexpr int ORBIS_TEXTURE_TOOL_ERROR_GNF_VERSION_MISMATCH = 0x80d70104; // 2161574148 + +// ULT +constexpr int ORBIS_ULT_ERROR_AGAIN = 0x80810008; // 2155937800 +constexpr int ORBIS_ULT_ERROR_ALIGNMENT = 0x80810002; // 2155937794 +constexpr int ORBIS_ULT_ERROR_BUSY = 0x80810007; // 2155937799 +constexpr int ORBIS_ULT_ERROR_FATAL = 0x80810009; // 2155937801 +constexpr int ORBIS_ULT_ERROR_INVALID = 0x80810004; // 2155937796 +constexpr int ORBIS_ULT_ERROR_NOT_INITIALIZE = 0x8081000a; // 2155937802 +constexpr int ORBIS_ULT_ERROR_NULL = 0x80810001; // 2155937793 +constexpr int ORBIS_ULT_ERROR_PERMISSION = 0x80810005; // 2155937797 +constexpr int ORBIS_ULT_ERROR_RANGE = 0x80810003; // 2155937795 +constexpr int ORBIS_ULT_ERROR_STATE = 0x80810006; // 2155937798 + +// USBD +constexpr int ORBIS_USBD_ERROR_ACCESS = 0x80240003; // 2149842947 +constexpr int ORBIS_USBD_ERROR_BUSY = 0x80240006; // 2149842950 +constexpr int ORBIS_USBD_ERROR_FATAL = 0x802400ff; // 2149843199 +constexpr int ORBIS_USBD_ERROR_INTERRUPTED = 0x8024000a; // 2149842954 +constexpr int ORBIS_USBD_ERROR_INVALID_ARG = 0x80240002; // 2149842946 +constexpr int ORBIS_USBD_ERROR_IO = 0x80240001; // 2149842945 +constexpr int ORBIS_USBD_ERROR_NO_DEVICE = 0x80240004; // 2149842948 +constexpr int ORBIS_USBD_ERROR_NO_MEM = 0x8024000b; // 2149842955 +constexpr int ORBIS_USBD_ERROR_NOT_FOUND = 0x80240005; // 2149842949 +constexpr int ORBIS_USBD_ERROR_NOT_SUPPORTED = 0x8024000c; // 2149842956 +constexpr int ORBIS_USBD_ERROR_OVERFLOW = 0x80240008; // 2149842952 +constexpr int ORBIS_USBD_ERROR_PIPE = 0x80240009; // 2149842953 +constexpr int ORBIS_USBD_ERROR_TIMEOUT = 0x80240007; // 2149842951 + +// VDEC +constexpr int ORBIS_VDEC_CORE_ERROR_API_FAIL = 0x80c00001; // 2160066561 +constexpr int ORBIS_VDEC_CORE_ERROR_CODEC_TYPE = 0x80c00003; // 2160066563 +constexpr int ORBIS_VDEC_CORE_ERROR_COMPUTE_PIPE_ID = 0x80c00016; // 2160066582 +constexpr int ORBIS_VDEC_CORE_ERROR_CORE_TYPE = 0x80c00002; // 2160066562 +constexpr int ORBIS_VDEC_CORE_ERROR_CPU_GPU_MEMORY_SIZE = 0x80c00009; // 2160066569 +constexpr int ORBIS_VDEC_CORE_ERROR_CPU_MEMORY_SIZE = 0x80c00008; // 2160066568 +constexpr int ORBIS_VDEC_CORE_ERROR_DECODE_MODE = 0x80c00005; // 2160066565 +constexpr int ORBIS_VDEC_CORE_ERROR_EXCEED_INSTANCE = 0x80c00011; // 2160066577 +constexpr int ORBIS_VDEC_CORE_ERROR_FRAME_BUFFER_ALIGNMENT = 0x80c0000b; // 2160066571 +constexpr int ORBIS_VDEC_CORE_ERROR_FRAME_BUFFER_SIZE = 0x80c0000a; // 2160066570 +constexpr int ORBIS_VDEC_CORE_ERROR_FRAME_FORMAT = 0x80c0000d; // 2160066573 +constexpr int ORBIS_VDEC_CORE_ERROR_FRAME_WIDTH_ALIGNMENT = 0x80c0000c; // 2160066572 +constexpr int ORBIS_VDEC_CORE_ERROR_HANDLE = 0x80c00000; // 2160066560 +constexpr int ORBIS_VDEC_CORE_ERROR_INPUT_AU = 0x80c00012; // 2160066578 +constexpr int ORBIS_VDEC_CORE_ERROR_INPUT_FULL = 0x80c0000e; // 2160066574 +constexpr int ORBIS_VDEC_CORE_ERROR_INPUT_STREAM = 0x80c00013; // 2160066579 +constexpr int ORBIS_VDEC_CORE_ERROR_INVALID_SEQUENCE = 0x80c00010; // 2160066576 +constexpr int ORBIS_VDEC_CORE_ERROR_MAP_COUNT = 0x80c00015; // 2160066581 +constexpr int ORBIS_VDEC_CORE_ERROR_MAX_FRAME_SIZE = 0x80c00006; // 2160066566 +constexpr int ORBIS_VDEC_CORE_ERROR_MEMORY_POINTER = 0x80c00007; // 2160066567 +constexpr int ORBIS_VDEC_CORE_ERROR_MEMORY_TYPE = 0x80c00004; // 2160066564 +constexpr int ORBIS_VDEC_CORE_ERROR_NEW_SEQUENCE = 0x80c0000f; // 2160066575 +constexpr int ORBIS_VDEC_CORE_ERROR_RESET_DATA = 0x80c00014; // 2160066580 + +// VENC +constexpr int ORBIS_VENC_CORE_ERROR_API_FAIL = 0x80bf0001; // 2160001025 +constexpr int ORBIS_VENC_CORE_ERROR_CORE_TYPE = 0x80bf0002; // 2160001026 +constexpr int ORBIS_VENC_CORE_ERROR_CPU_GPU_MEMORY_SIZE = 0x80bf0008; // 2160001032 +constexpr int ORBIS_VENC_CORE_ERROR_CPU_MEMORY_SIZE = 0x80bf0007; // 2160001031 +constexpr int ORBIS_VENC_CORE_ERROR_FRAME_BUFFER_ALIGNMENT = 0x80bf000a; // 2160001034 +constexpr int ORBIS_VENC_CORE_ERROR_FRAME_BUFFER_SIZE = 0x80bf0009; // 2160001033 +constexpr int ORBIS_VENC_CORE_ERROR_FRAME_FORMAT = 0x80bf0005; // 2160001029 +constexpr int ORBIS_VENC_CORE_ERROR_HANDLE = 0x80bf0000; // 2160001024 +constexpr int ORBIS_VENC_CORE_ERROR_MAP_COUNT = 0x80bf000c; // 2160001036 +constexpr int ORBIS_VENC_CORE_ERROR_MEMORY_POINTER = 0x80bf0006; // 2160001030 +constexpr int ORBIS_VENC_CORE_ERROR_MEMORY_TYPE = 0x80bf000b; // 2160001035 +constexpr int ORBIS_VENC_CORE_ERROR_PRESET_BASE = 0x80bf0003; // 2160001027 +constexpr int ORBIS_VENC_CORE_ERROR_PRESET_MODE = 0x80bf0004; // 2160001028 + +// VIDEOCORE +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_BACKGROUND = 0x80dc0019; // 2161901593 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_ENABLE_RAZOR = 0x80dc0900; // 2161903872 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_INTERNAL = 0x80dc80ff; // 2161934591 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_INTERNAL_CORE = 0x80dcff00; // 2161966848 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_INVALID_PARAM = 0x80dc0001; // 2161901569 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_INVALID_PARAM_CORE = 0x80dc0100; // 2161901824 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_INVALID_PARAM_COREIF = 0x80dc8002; // 2161934338 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_INVALID_STATUS = 0x80dc0003; // 2161901571 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_INVALID_STATUS_CORE = 0x80dc8200; // 2161934848 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_INVALID_STATUS_COREIF = 0x80dc0004; // 2161901572 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_IPMI = 0x80dc800b; // 2161934347 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_IPMI_CORE = 0x80dc8800; // 2161936384 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_IPMI_COREIF = 0x80dc800c; // 2161934348 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_KERNEL_FUNCTION = 0x80dc800a; // 2161934346 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_KERNEL_FUNCTION_CORE = 0x80dc8700; // 2161936128 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_NO_ALLOCATE_MEMORY = 0x80dc000d; // 2161901581 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_NO_DECODER_RESOURCE = 0x80dc0016; // 2161901590 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_NOPLAYABLE = 0x80dc0400; // 2161902592 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_NOT_EXIST_REQUESTID = 0x80dc0012; // 2161901586 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_NOT_EXIST_RESOURCE_HANDLE = 0x80dc0015; // 2161901589 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_NOT_EXIST_STREAM = 0x80dc0300; // 2161902336 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_NOT_EXIST_STREAMID = 0x80dc0006; // 2161901574 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_REGISTERED_CALLBACK_FULL = 0x80dc0013; // 2161901587 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_REQUEST_FULL = 0x80dc0011; // 2161901585 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_RESOURCE_HANDLE_FULL = 0x80dc0014; // 2161901588 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_RESULT_TIMEOUT = 0x80dc0010; // 2161901584 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_SCE_FUNCTION = 0x80dc8009; // 2161934345 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_SCE_FUNCTION_CORE = 0x80dc8600; // 2161935872 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_STOP = 0x80dc0500; // 2161902848 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_STREAM_ABORTED = 0x80dc0018; // 2161901592 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_STREAM_FULL = 0x80dc0005; // 2161901573 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_STREAM_SUSPENDED = 0x80dc0017; // 2161901591 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_UNUSABLE_THIS_API = 0x80dc000e; // 2161901582 +constexpr int ORBIS_VIDEOCORE_ERROR_CODE_VIDEOCORE_FUNCTION = 0x80dc8008; // 2161934344 + +// VIDEODEC +constexpr int ORBIS_VIDEODEC_ERROR_API_FAIL = 0x80c10000; // 2160132096 +constexpr int ORBIS_VIDEODEC_ERROR_ARGUMENT_POINTER = 0x80c1000f; // 2160132111 +constexpr int ORBIS_VIDEODEC_ERROR_AU_POINTER = 0x80c1000a; // 2160132106 +constexpr int ORBIS_VIDEODEC_ERROR_AU_SIZE = 0x80c10009; // 2160132105 +constexpr int ORBIS_VIDEODEC_ERROR_CODEC_TYPE = 0x80c10001; // 2160132097 +constexpr int ORBIS_VIDEODEC_ERROR_CONFIG_INFO = 0x80c1000e; // 2160132110 +constexpr int ORBIS_VIDEODEC_ERROR_CPU_GPU_MEMORY_POINTER = 0x80c10007; // 2160132103 +constexpr int ORBIS_VIDEODEC_ERROR_CPU_GPU_MEMORY_SIZE = 0x80c10006; // 2160132102 +constexpr int ORBIS_VIDEODEC_ERROR_CPU_MEMORY_POINTER = 0x80c10005; // 2160132101 +constexpr int ORBIS_VIDEODEC_ERROR_CPU_MEMORY_SIZE = 0x80c10004; // 2160132100 +constexpr int ORBIS_VIDEODEC_ERROR_FRAME_BUFFER_ALIGNMENT = 0x80c1000d; // 2160132109 +constexpr int ORBIS_VIDEODEC_ERROR_FRAME_BUFFER_POINTER = 0x80c1000c; // 2160132108 +constexpr int ORBIS_VIDEODEC_ERROR_FRAME_BUFFER_SIZE = 0x80c1000b; // 2160132107 +constexpr int ORBIS_VIDEODEC_ERROR_HANDLE = 0x80c10003; // 2160132099 +constexpr int ORBIS_VIDEODEC_ERROR_SHADER_CONTEXT_POINTER = 0x80c10008; // 2160132104 +constexpr int ORBIS_VIDEODEC_ERROR_STRUCT_SIZE = 0x80c10002; // 2160132098 +constexpr int ORBIS_VIDEODEC2_ERROR_API_FAIL = 0x811d0000; // 2166161408 +constexpr int ORBIS_VIDEODEC2_ERROR_ARGUMENT_POINTER = 0x811d000f; // 2166161423 +constexpr int ORBIS_VIDEODEC2_ERROR_AU_POINTER = 0x811d000a; // 2166161418 +constexpr int ORBIS_VIDEODEC2_ERROR_AU_SIZE = 0x811d0009; // 2166161417 +constexpr int ORBIS_VIDEODEC2_ERROR_CODEC_TYPE = 0x811d0001; // 2166161409 +constexpr int ORBIS_VIDEODEC2_ERROR_CONFIG_INFO = 0x811d000e; // 2166161422 +constexpr int ORBIS_VIDEODEC2_ERROR_CPU_GPU_MEMORY_POINTER = 0x811d0007; // 2166161415 +constexpr int ORBIS_VIDEODEC2_ERROR_CPU_GPU_MEMORY_SIZE = 0x811d0006; // 2166161414 +constexpr int ORBIS_VIDEODEC2_ERROR_CPU_MEMORY_POINTER = 0x811d0005; // 2166161413 +constexpr int ORBIS_VIDEODEC2_ERROR_CPU_MEMORY_SIZE = 0x811d0004; // 2166161412 +constexpr int ORBIS_VIDEODEC2_ERROR_FRAME_BUFFER_ALIGNMENT = 0x811d000d; // 2166161421 +constexpr int ORBIS_VIDEODEC2_ERROR_FRAME_BUFFER_POINTER = 0x811d000c; // 2166161420 +constexpr int ORBIS_VIDEODEC2_ERROR_FRAME_BUFFER_SIZE = 0x811d000b; // 2166161419 +constexpr int ORBIS_VIDEODEC2_ERROR_HANDLE = 0x811d0003; // 2166161411 +constexpr int ORBIS_VIDEODEC2_ERROR_SHADER_CONTEXT_POINTER = 0x811d0008; // 2166161416 +constexpr int ORBIS_VIDEODEC2_ERROR_STRUCT_SIZE = 0x811d0002; // 2166161410 + +// VISION_MANAGER +constexpr int ORBIS_VISION_MANAGER_ERROR_ALREADY_INIT = 0x80e70001; // 2162622465 +constexpr int ORBIS_VISION_MANAGER_ERROR_FACE_RECOG_DICT_NO_EXIST = 0x80e70020; // 2162622496 +constexpr int ORBIS_VISION_MANAGER_ERROR_FATAL = 0x80e700ff; // 2162622719 +constexpr int ORBIS_VISION_MANAGER_ERROR_FLEXIBLE_MEMORY_NOT_ENOUGH = 0x80e70013; // 2162622483 +constexpr int ORBIS_VISION_MANAGER_ERROR_NO_EXIST_TARGET = 0x80e70007; // 2162622471 +constexpr int ORBIS_VISION_MANAGER_ERROR_NOMEM = 0x80e70005; // 2162622469 +constexpr int ORBIS_VISION_MANAGER_ERROR_NOT_CAMERA_CONNECTED = 0x80e70003; // 2162622467 +constexpr int ORBIS_VISION_MANAGER_ERROR_NOT_INIT = 0x80e70002; // 2162622466 +constexpr int ORBIS_VISION_MANAGER_ERROR_NOT_SUPPORTED = 0x80e70004; // 2162622468 +constexpr int ORBIS_VISION_MANAGER_ERROR_OTHER_PROCESS_RUNNING = 0x80e70006; // 2162622470 +constexpr int ORBIS_VISION_MANAGER_ERROR_PARAM = 0x80e70000; // 2162622464 +constexpr int ORBIS_VISION_MANAGER_ERROR_RECEIVE_CANCEL_REQUEST = 0x80e70008; // 2162622472 +constexpr int ORBIS_VISION_MANAGER_ERROR_SYSTEM_SHARED_MEMORY_NOT_ENOUGH = 0x80e70011; // 2162622481 +constexpr int ORBIS_VISION_MANAGER_ERROR_UNEXPECTED_INTERNAL_STATUS = 0x80e70009; // 2162622473 +constexpr int ORBIS_VISION_MANAGER_ERROR_UNEXPECTED_RECV_MSG_TYPE_FROM_CAMERA = + 0x80e70016; // 2162622486 +constexpr int ORBIS_VISION_MANAGER_ERROR_UNEXPECTED_RECV_MSG_TYPE_FROM_CORE = + 0x80e70015; // 2162622485 +constexpr int ORBIS_VISION_MANAGER_ERROR_UNEXPECTED_RECV_MSG_TYPE_FROM_DEPTH = + 0x80e70017; // 2162622487 +constexpr int ORBIS_VISION_MANAGER_ERROR_UNEXPECTED_RECV_MSG_TYPE_FROM_FACE = + 0x80e70019; // 2162622489 +constexpr int ORBIS_VISION_MANAGER_ERROR_UNEXPECTED_RECV_MSG_TYPE_FROM_MAIN = + 0x80e70014; // 2162622484 +constexpr int ORBIS_VISION_MANAGER_ERROR_UNEXPECTED_RECV_MSG_TYPE_FROM_PAD_TRACKER = + 0x80e70018; // 2162622488 +constexpr int ORBIS_VISION_MANAGER_ERROR_UNEXPECTED_RECV_MSG_WAIT = 0x80e70010; // 2162622480 +constexpr int ORBIS_VISION_MANAGER_ERROR_UNEXPECTED_REGISTER_USER_DATA_VERSION = + 0x80e70021; // 2162622497 +constexpr int ORBIS_VISION_MANAGER_ERROR_VIDEO_SHARED_MEMORY_NOT_ENOUGH = 0x80e70012; // 2162622482 + +// VOICE +constexpr int ORBIS_VOICE_ERROR_ARGUMENT_INVALID = 0x804e0805; // 2152597509 +constexpr int ORBIS_VOICE_ERROR_CONTAINER_INVALID = 0x804e0806; // 2152597510 +constexpr int ORBIS_VOICE_ERROR_GENERAL = 0x804e0803; // 2152597507 +constexpr int ORBIS_VOICE_ERROR_LIBVOICE_INITIALIZED = 0x804e0802; // 2152597506 +constexpr int ORBIS_VOICE_ERROR_LIBVOICE_NOT_INIT = 0x804e0801; // 2152597505 +constexpr int ORBIS_VOICE_ERROR_LIBVOICEQOS_ARGUMENT_INVALID = 0x804e0902; // 2152597762 +constexpr int ORBIS_VOICE_ERROR_LIBVOICEQOS_INITIALIZED = 0x804e0905; // 2152597765 +constexpr int ORBIS_VOICE_ERROR_LIBVOICEQOS_INTERNAL_UNRECOVERABLE = 0x804e0904; // 2152597764 +constexpr int ORBIS_VOICE_ERROR_LIBVOICEQOS_NOT_INIT = 0x804e0901; // 2152597761 +constexpr int ORBIS_VOICE_ERROR_LIBVOICEQOS_PACKET_INVALID = 0x804e0903; // 2152597763 +constexpr int ORBIS_VOICE_ERROR_LIBVOICEQOS_RESOURCE_USED = 0x804e0907; // 2152597767 +constexpr int ORBIS_VOICE_ERROR_LIBVOICEQOS_SYSTEM = 0x804e0906; // 2152597766 +constexpr int ORBIS_VOICE_ERROR_PORT_INVALID = 0x804e0804; // 2152597508 +constexpr int ORBIS_VOICE_ERROR_RESOURCE_INSUFFICIENT = 0x804e0808; // 2152597512 +constexpr int ORBIS_VOICE_ERROR_SERVICE_ATTACHED = 0x804e080b; // 2152597515 +constexpr int ORBIS_VOICE_ERROR_SERVICE_DETACHED = 0x804e080a; // 2152597514 +constexpr int ORBIS_VOICE_ERROR_TOPOLOGY = 0x804e0807; // 2152597511 + +// ZLIB +constexpr int ORBIS_ZLIB_ERROR_AGAIN = 0x8112000b; // 2165440523 +constexpr int ORBIS_ZLIB_ERROR_ALREADY_INITIALIZED = 0x81120033; // 2165440563 +constexpr int ORBIS_ZLIB_ERROR_FATAL = 0x811200ff; // 2165440767 +constexpr int ORBIS_ZLIB_ERROR_FAULT = 0x8112000e; // 2165440526 +constexpr int ORBIS_ZLIB_ERROR_INVALID = 0x81120016; // 2165440534 +constexpr int ORBIS_ZLIB_ERROR_NOT_FOUND = 0x81120002; // 2165440514 +constexpr int ORBIS_ZLIB_ERROR_NOT_INITIALIZED = 0x81120032; // 2165440562 +constexpr int ORBIS_ZLIB_ERROR_TIMEDOUT = 0x81120027; // 2165440551 + +// constexpr int ORBIS_Missing_Long_Name = 0x80552c00; // 2153065472 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c01; // 2153065473 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c02; // 2153065474 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c03; // 2153065475 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c04; // 2153065476 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c05; // 2153065477 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c06; // 2153065478 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c07; // 2153065479 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c08; // 2153065480 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c09; // 2153065481 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c0a; // 2153065482 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c0b; // 2153065483 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c0c; // 2153065484 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c0d; // 2153065485 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c0e; // 2153065486 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c0f; // 2153065487 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c10; // 2153065488 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c11; // 2153065489 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c12; // 2153065490 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c13; // 2153065491 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c14; // 2153065492 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c15; // 2153065493 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c16; // 2153065494 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c17; // 2153065495 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c18; // 2153065496 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c19; // 2153065497 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c1a; // 2153065498 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c1b; // 2153065499 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c1c; // 2153065500 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c1d; // 2153065501 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c1e; // 2153065502 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c1f; // 2153065503 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c20; // 2153065504 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c21; // 2153065505 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c30; // 2153065520 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c31; // 2153065521 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c32; // 2153065522 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c33; // 2153065523 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c34; // 2153065524 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c35; // 2153065525 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c36; // 2153065526 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c37; // 2153065527 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c38; // 2153065528 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c39; // 2153065529 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c3a; // 2153065530 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c3b; // 2153065531 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c3c; // 2153065532 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c3d; // 2153065533 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c3e; // 2153065534 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c3f; // 2153065535 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c40; // 2153065536 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c41; // 2153065537 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c42; // 2153065538 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c43; // 2153065539 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c44; // 2153065540 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c45; // 2153065541 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c46; // 2153065542 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c47; // 2153065543 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c48; // 2153065544 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c49; // 2153065545 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c4a; // 2153065546 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c4b; // 2153065547 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c4c; // 2153065548 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c4d; // 2153065549 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c4e; // 2153065550 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c4f; // 2153065551 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c50; // 2153065552 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c51; // 2153065553 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c52; // 2153065554 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c53; // 2153065555 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c54; // 2153065556 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c55; // 2153065557 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c56; // 2153065558 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c57; // 2153065559 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c58; // 2153065560 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c60; // 2153065568 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c61; // 2153065569 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c62; // 2153065570 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c63; // 2153065571 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c64; // 2153065572 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c65; // 2153065573 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c66; // 2153065574 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c67; // 2153065575 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c70; // 2153065584 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c71; // 2153065585 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c72; // 2153065586 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c73; // 2153065587 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c74; // 2153065588 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c75; // 2153065589 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c76; // 2153065590 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c77; // 2153065591 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c78; // 2153065592 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c79; // 2153065593 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c7a; // 2153065594 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c7b; // 2153065595 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c7c; // 2153065596 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c7d; // 2153065597 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c7e; // 2153065598 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c7f; // 2153065599 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c80; // 2153065600 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c81; // 2153065601 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c82; // 2153065602 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c83; // 2153065603 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c84; // 2153065604 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c85; // 2153065605 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c86; // 2153065606 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c87; // 2153065607 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c88; // 2153065608 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c89; // 2153065609 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c8a; // 2153065610 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c8b; // 2153065611 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c8c; // 2153065612 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c8d; // 2153065613 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c8e; // 2153065614 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c8f; // 2153065615 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c90; // 2153065616 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c91; // 2153065617 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c92; // 2153065618 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c93; // 2153065619 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c94; // 2153065620 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c95; // 2153065621 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c96; // 2153065622 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c97; // 2153065623 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c98; // 2153065624 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c99; // 2153065625 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c9a; // 2153065626 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c9b; // 2153065627 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c9c; // 2153065628 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c9d; // 2153065629 +// constexpr int ORBIS_Missing_Long_Name = 0x80552c9e; // 2153065630 +// constexpr int ORBIS_Missing_Long_Name = 0x80552ca0; // 2153065632 +// constexpr int ORBIS_Missing_Long_Name = 0x80552ca1; // 2153065633 +// constexpr int ORBIS_Missing_Long_Name = 0x80552ca2; // 2153065634 +// constexpr int ORBIS_Missing_Long_Name = 0x80552ca3; // 2153065635 +// constexpr int ORBIS_Missing_Long_Name = 0x80552ca4; // 2153065636 +// constexpr int ORBIS_Missing_Long_Name = 0x80552ca5; // 2153065637 +// constexpr int ORBIS_Missing_Long_Name = 0x80552ca6; // 2153065638 +// constexpr int ORBIS_Missing_Long_Name = 0x80552ca7; // 2153065639 +// constexpr int ORBIS_Missing_Long_Name = 0x80552ca8; // 2153065640 +// constexpr int ORBIS_Missing_Long_Name = 0x80552caa; // 2153065642 +// constexpr int ORBIS_Missing_Long_Name = 0x80552cab; // 2153065643 +// constexpr int ORBIS_Missing_Long_Name = 0x80552cd0; // 2153065680 +// constexpr int ORBIS_Missing_Long_Name = 0x80552cd1; // 2153065681 +// constexpr int ORBIS_Missing_Long_Name = 0x80552cd2; // 2153065682 +// constexpr int ORBIS_Missing_Long_Name = 0x80552cd3; // 2153065683 +// constexpr int ORBIS_Missing_Long_Name = 0x80552cd4; // 2153065684 +// constexpr int ORBIS_Missing_Long_Name = 0x80552cd5; // 2153065685 +// constexpr int ORBIS_Missing_Long_Name = 0x80552cd6; // 2153065686 +// constexpr int ORBIS_Missing_Long_Name = 0x80552cd7; // 2153065687 +// constexpr int ORBIS_Missing_Long_Name = 0x80552cd8; // 2153065688 +// constexpr int ORBIS_Missing_Long_Name = 0x80552cd9; // 2153065689 +// constexpr int ORBIS_Missing_Long_Name = 0x80552cda; // 2153065690 +// constexpr int ORBIS_Missing_Long_Name = 0x80552cdb; // 2153065691 +// constexpr int ORBIS_Missing_Long_Name = 0x80552cdc; // 2153065692 +// constexpr int ORBIS_Missing_Long_Name = 0x80552cdd; // 2153065693 +// constexpr int ORBIS_Missing_Long_Name = 0x80552cde; // 2153065694 +// constexpr int ORBIS_Missing_Long_Name = 0x80552cdf; // 2153065695 +// constexpr int ORBIS_Missing_Long_Name = 0x80552ce0; // 2153065696 +// constexpr int ORBIS_Missing_Long_Name = 0x80552ce1; // 2153065697 +// constexpr int ORBIS_Missing_Long_Name = 0x80552ce2; // 2153065698 +// constexpr int ORBIS_Missing_Long_Name = 0x80552ce3; // 2153065699 +// constexpr int ORBIS_Missing_Long_Name = 0x80552ce4; // 2153065700 +// constexpr int ORBIS_Missing_Long_Name = 0x80552ce5; // 2153065701 +// constexpr int ORBIS_Missing_Long_Name = 0x80552ce6; // 2153065702 +// constexpr int ORBIS_Missing_Long_Name = 0x80552ce7; // 2153065703 +// constexpr int ORBIS_Missing_Long_Name = 0x80552ce8; // 2153065704 +// constexpr int ORBIS_Missing_Long_Name = 0x808b0001; // 2156593153 +// constexpr int ORBIS_Missing_Long_Name = 0x808b0002; // 2156593154 +// constexpr int ORBIS_Missing_Long_Name = 0x808b0003; // 2156593155 +// constexpr int ORBIS_Missing_Long_Name = 0x808b0004; // 2156593156 +// constexpr int ORBIS_Missing_Long_Name = 0x808b0005; // 2156593157 +// constexpr int ORBIS_Missing_Long_Name = 0x808b0006; // 2156593158 +// constexpr int ORBIS_Missing_Long_Name = 0x808c0000; // 2156658688 +// constexpr int ORBIS_Missing_Long_Name = 0x808c0001; // 2156658689 +// constexpr int ORBIS_Missing_Long_Name = 0x808c0002; // 2156658690 +// constexpr int ORBIS_Missing_Long_Name = 0x808c0003; // 2156658691 +// constexpr int ORBIS_Missing_Long_Name = 0x808c0004; // 2156658692 +// constexpr int ORBIS_Missing_Long_Name = 0x808c0005; // 2156658693 +// constexpr int ORBIS_Missing_Long_Name = 0x808c0006; // 2156658694 +// constexpr int ORBIS_Missing_Long_Name = 0x808c0007; // 2156658695 +// constexpr int ORBIS_Missing_Long_Name = 0x808c0008; // 2156658696 +// constexpr int ORBIS_Missing_Long_Name = 0x808c0009; // 2156658697 +// constexpr int ORBIS_Missing_Long_Name = 0x808c000a; // 2156658698 +// constexpr int ORBIS_Missing_Long_Name = 0x808c000b; // 2156658699 +// constexpr int ORBIS_Missing_Long_Name = 0x808c000c; // 2156658700 +// constexpr int ORBIS_Missing_Long_Name = 0x808c000d; // 2156658701 +// constexpr int ORBIS_Missing_Long_Name = 0x808c000e; // 2156658702 +// constexpr int ORBIS_Missing_Long_Name = 0x808c000f; // 2156658703 +// constexpr int ORBIS_Missing_Long_Name = 0x808c0010; // 2156658704 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30001; // 2159214593 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30002; // 2159214594 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30003; // 2159214595 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30004; // 2159214596 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30005; // 2159214597 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30006; // 2159214598 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30007; // 2159214599 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30008; // 2159214600 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30010; // 2159214608 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30011; // 2159214609 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30012; // 2159214610 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30013; // 2159214611 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30021; // 2159214625 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30022; // 2159214626 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30023; // 2159214627 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30024; // 2159214628 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30025; // 2159214629 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30027; // 2159214631 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30028; // 2159214632 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30030; // 2159214640 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30701; // 2159216385 +// constexpr int ORBIS_Missing_Long_Name = 0x80b30702; // 2159216386 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35001; // 2159235073 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35002; // 2159235074 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35003; // 2159235075 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35004; // 2159235076 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35005; // 2159235077 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35021; // 2159235105 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35022; // 2159235106 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35023; // 2159235107 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35024; // 2159235108 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35025; // 2159235109 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35026; // 2159235110 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35027; // 2159235111 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35028; // 2159235112 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35029; // 2159235113 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35041; // 2159235137 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35042; // 2159235138 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35051; // 2159235153 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35052; // 2159235154 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35500; // 2159236352 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35501; // 2159236353 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35502; // 2159236354 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35503; // 2159236355 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35504; // 2159236356 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35505; // 2159236357 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35506; // 2159236358 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35507; // 2159236359 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35508; // 2159236360 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35600; // 2159236608 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35700; // 2159236864 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35701; // 2159236865 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35702; // 2159236866 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35703; // 2159236867 +// constexpr int ORBIS_Missing_Long_Name = 0x80b35704; // 2159236868 +// constexpr int ORBIS_Missing_Long_Name = 0x80b36000; // 2159239168 +// constexpr int ORBIS_Missing_Long_Name = 0x80b36001; // 2159239169 +// constexpr int ORBIS_Missing_Long_Name = 0x80b36002; // 2159239170 +// constexpr int ORBIS_Missing_Long_Name = 0x80b36004; // 2159239172 +// constexpr int ORBIS_Missing_Long_Name = 0x80b90001; // 2159607809 +// constexpr int ORBIS_Missing_Long_Name = 0x80b90002; // 2159607810 +// constexpr int ORBIS_Missing_Long_Name = 0x80b90003; // 2159607811 +// constexpr int ORBIS_Missing_Long_Name = 0x80b90005; // 2159607813 +// constexpr int ORBIS_Missing_Long_Name = 0x81000000; // 2164260864 +// constexpr int ORBIS_Missing_Long_Name = 0x81000001; // 2164260865 +// constexpr int ORBIS_Missing_Long_Name = 0x81000002; // 2164260866 +// constexpr int ORBIS_Missing_Long_Name = 0x81000003; // 2164260867 +// constexpr int ORBIS_Missing_Long_Name = 0x81000004; // 2164260868 +// constexpr int ORBIS_Missing_Long_Name = 0x81000005; // 2164260869 +// constexpr int ORBIS_Missing_Long_Name = 0x81000101; // 2164261121 +// constexpr int ORBIS_Missing_Long_Name = 0x81000102; // 2164261122 +// constexpr int ORBIS_Missing_Long_Name = 0x81000103; // 2164261123 +// constexpr int ORBIS_Missing_Long_Name = 0x81000104; // 2164261124 +// constexpr int ORBIS_Missing_Long_Name = 0x81000200; // 2164261376 +// constexpr int ORBIS_Missing_Long_Name = 0x81000201; // 2164261377 +// constexpr int ORBIS_Missing_Long_Name = 0x81000202; // 2164261378 +// constexpr int ORBIS_Missing_Long_Name = 0x81000203; // 2164261379 +// constexpr int ORBIS_Missing_Long_Name = 0x81000204; // 2164261380 +// constexpr int ORBIS_Missing_Long_Name = 0x81000301; // 2164261633 +// constexpr int ORBIS_Missing_Long_Name = 0x81000302; // 2164261634 +// constexpr int ORBIS_Missing_Long_Name = 0x81000303; // 2164261635 +// constexpr int ORBIS_Missing_Long_Name = 0x81000304; // 2164261636 +// constexpr int ORBIS_Missing_Long_Name = 0x81000305; // 2164261637 +// constexpr int ORBIS_Missing_Long_Name = 0x81000306; // 2164261638 +// constexpr int ORBIS_Missing_Long_Name = 0x81000307; // 2164261639 +// constexpr int ORBIS_Missing_Long_Name = 0x81000308; // 2164261640 +// constexpr int ORBIS_Missing_Long_Name = 0x81000309; // 2164261641 +// constexpr int ORBIS_Missing_Long_Name = 0x8100030a; // 2164261642 +// constexpr int ORBIS_Missing_Long_Name = 0x8100030b; // 2164261643 +// constexpr int ORBIS_Missing_Long_Name = 0x8100030c; // 2164261644 +// constexpr int ORBIS_Missing_Long_Name = 0x8100030d; // 2164261645 +// constexpr int ORBIS_Missing_Long_Name = 0x8100030e; // 2164261646 +// constexpr int ORBIS_Missing_Long_Name = 0x8100030f; // 2164261647 +// constexpr int ORBIS_Missing_Long_Name = 0x81000310; // 2164261648 +// constexpr int ORBIS_Missing_Long_Name = 0x81000400; // 2164261888 +// constexpr int ORBIS_Missing_Long_Name = 0x81000501; // 2164262145 +// constexpr int ORBIS_Missing_Long_Name = 0x81000502; // 2164262146 +// constexpr int ORBIS_Missing_Long_Name = 0x81000503; // 2164262147 +// constexpr int ORBIS_Missing_Long_Name = 0x81000600; // 2164262400 +// constexpr int ORBIS_Missing_Long_Name = 0x81000601; // 2164262401 +// constexpr int ORBIS_Missing_Long_Name = 0x81000602; // 2164262402 +// constexpr int ORBIS_Missing_Long_Name = 0x81000603; // 2164262403 +// constexpr int ORBIS_Missing_Long_Name = 0x81000604; // 2164262404 +// constexpr int ORBIS_Missing_Long_Name = 0x81000605; // 2164262405 \ No newline at end of file diff --git a/src/core/libraries/kernel/file_system.cpp b/src/core/libraries/kernel/file_system.cpp index f83863479..b72d5d970 100644 --- a/src/core/libraries/kernel/file_system.cpp +++ b/src/core/libraries/kernel/file_system.cpp @@ -117,12 +117,12 @@ int PS4_SYSV_ABI sceKernelClose(int d) { return ORBIS_KERNEL_ERROR_EPERM; } if (d == 2003) { // dev/urandom case - return SCE_OK; + return ORBIS_OK; } auto* h = Common::Singleton::Instance(); auto* file = h->GetFile(d); if (file == nullptr) { - return SCE_KERNEL_ERROR_EBADF; + return ORBIS_KERNEL_ERROR_EBADF; } if (!file->is_directory) { file->f.Close(); @@ -130,7 +130,7 @@ int PS4_SYSV_ABI sceKernelClose(int d) { file->is_opened = false; LOG_INFO(Kernel_Fs, "Closing {}", file->m_guest_name); h->DeleteHandle(d); - return SCE_OK; + return ORBIS_OK; } int PS4_SYSV_ABI posix_close(int d) { @@ -156,7 +156,7 @@ size_t PS4_SYSV_ABI sceKernelWrite(int d, const void* buf, size_t nbytes) { auto* h = Common::Singleton::Instance(); auto* file = h->GetFile(d); if (file == nullptr) { - return SCE_KERNEL_ERROR_EBADF; + return ORBIS_KERNEL_ERROR_EBADF; } std::scoped_lock lk{file->m_mutex}; @@ -165,7 +165,7 @@ size_t PS4_SYSV_ABI sceKernelWrite(int d, const void* buf, size_t nbytes) { int PS4_SYSV_ABI sceKernelUnlink(const char* path) { if (path == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } auto* h = Common::Singleton::Instance(); @@ -173,11 +173,11 @@ int PS4_SYSV_ABI sceKernelUnlink(const char* path) { const auto host_path = mnt->GetHostPath(path); if (host_path.empty()) { - return SCE_KERNEL_ERROR_EACCES; + return ORBIS_KERNEL_ERROR_EACCES; } if (std::filesystem::is_directory(host_path)) { - return SCE_KERNEL_ERROR_EPERM; + return ORBIS_KERNEL_ERROR_EPERM; } auto* file = h->GetFile(host_path); @@ -186,7 +186,7 @@ int PS4_SYSV_ABI sceKernelUnlink(const char* path) { } LOG_INFO(Kernel_Fs, "Unlinked {}", path); - return SCE_OK; + return ORBIS_OK; } size_t PS4_SYSV_ABI _readv(int d, const SceKernelIovec* iov, int iovcnt) { @@ -239,7 +239,7 @@ s64 PS4_SYSV_ABI sceKernelRead(int d, void* buf, size_t nbytes) { auto* h = Common::Singleton::Instance(); auto* file = h->GetFile(d); if (file == nullptr) { - return SCE_KERNEL_ERROR_EBADF; + return ORBIS_KERNEL_ERROR_EBADF; } std::scoped_lock lk{file->m_mutex}; @@ -259,21 +259,21 @@ int PS4_SYSV_ABI posix_read(int d, void* buf, size_t nbytes) { int PS4_SYSV_ABI sceKernelMkdir(const char* path, u16 mode) { LOG_INFO(Kernel_Fs, "path = {} mode = {}", path, mode); if (path == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } auto* mnt = Common::Singleton::Instance(); const auto dir_name = mnt->GetHostPath(path); if (std::filesystem::exists(dir_name)) { - return SCE_KERNEL_ERROR_EEXIST; + return ORBIS_KERNEL_ERROR_EEXIST; } // CUSA02456: path = /aotl after sceSaveDataMount(mode = 1) if (dir_name.empty() || !std::filesystem::create_directory(dir_name)) { - return SCE_KERNEL_ERROR_EIO; + return ORBIS_KERNEL_ERROR_EIO; } if (!std::filesystem::exists(dir_name)) { - return SCE_KERNEL_ERROR_ENOENT; + return ORBIS_KERNEL_ERROR_ENOENT; } return ORBIS_OK; } @@ -328,7 +328,7 @@ int PS4_SYSV_ABI sceKernelCheckReachability(const char* path) { auto* mnt = Common::Singleton::Instance(); const auto path_name = mnt->GetHostPath(path); if (!std::filesystem::exists(path_name)) { - return SCE_KERNEL_ERROR_ENOENT; + return ORBIS_KERNEL_ERROR_ENOENT; } return ORBIS_OK; } @@ -400,15 +400,15 @@ int PS4_SYSV_ABI sceKernelFtruncate(int fd, s64 length) { auto* file = h->GetFile(fd); if (file == nullptr) { - return SCE_KERNEL_ERROR_EBADF; + return ORBIS_KERNEL_ERROR_EBADF; } if (file->m_host_name.empty()) { - return SCE_KERNEL_ERROR_EACCES; + return ORBIS_KERNEL_ERROR_EACCES; } file->f.SetSize(length); - return SCE_OK; + return ORBIS_OK; } static int GetDents(int fd, char* buf, int nbytes, s64* basep) { diff --git a/src/core/libraries/kernel/libkernel.cpp b/src/core/libraries/kernel/libkernel.cpp index 9657ba04b..f18375f0e 100644 --- a/src/core/libraries/kernel/libkernel.cpp +++ b/src/core/libraries/kernel/libkernel.cpp @@ -90,7 +90,7 @@ int PS4_SYSV_ABI sceKernelMunmap(void* addr, size_t len) { } auto* memory = Core::Memory::Instance(); memory->UnmapMemory(std::bit_cast(addr), len); - return SCE_OK; + return ORBIS_OK; } struct iovec { @@ -114,15 +114,15 @@ int* PS4_SYSV_ABI __Error() { } void ErrSceToPosix(int result) { - const int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + const int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; g_posix_errno = rt; } int ErrnoToSceKernelError(int e) { - const auto res = SCE_KERNEL_ERROR_UNKNOWN + e; - return res > SCE_KERNEL_ERROR_ESTOP ? SCE_KERNEL_ERROR_UNKNOWN : res; + const auto res = ORBIS_KERNEL_ERROR_UNKNOWN + e; + return res > ORBIS_KERNEL_ERROR_ESTOP ? ORBIS_KERNEL_ERROR_UNKNOWN : res; } int PS4_SYSV_ABI sceKernelMmap(void* addr, u64 len, int prot, int flags, int fd, size_t offset, @@ -285,7 +285,7 @@ s32 PS4_SYSV_ABI sceKernelGetModuleInfoForUnwind(VAddr addr, int flags, OrbisModuleInfoForUnwind* info) { if (flags >= 3) { std::memset(info, 0, sizeof(OrbisModuleInfoForUnwind)); - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } if (!info) { return ORBIS_KERNEL_ERROR_EFAULT; diff --git a/src/core/libraries/kernel/memory_management.cpp b/src/core/libraries/kernel/memory_management.cpp index 826d47973..6d3d1a19f 100644 --- a/src/core/libraries/kernel/memory_management.cpp +++ b/src/core/libraries/kernel/memory_management.cpp @@ -22,20 +22,20 @@ int PS4_SYSV_ABI sceKernelAllocateDirectMemory(s64 searchStart, s64 searchEnd, u u64 alignment, int memoryType, s64* physAddrOut) { if (searchStart < 0 || searchEnd <= searchStart) { LOG_ERROR(Kernel_Vmm, "Provided address range is invalid!"); - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } const bool is_in_range = searchEnd - searchStart >= len; if (len <= 0 || !Common::Is16KBAligned(len) || !is_in_range) { LOG_ERROR(Kernel_Vmm, "Provided address range is invalid!"); - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } if (alignment != 0 && !Common::Is16KBAligned(alignment)) { LOG_ERROR(Kernel_Vmm, "Alignment value is invalid!"); - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } if (physAddrOut == nullptr) { LOG_ERROR(Kernel_Vmm, "Result physical address pointer is null!"); - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } auto* memory = Core::Memory::Instance(); @@ -47,7 +47,7 @@ int PS4_SYSV_ABI sceKernelAllocateDirectMemory(s64 searchStart, s64 searchEnd, u "alignment = {:#x}, memoryType = {:#x}, physAddrOut = {:#x}", searchStart, searchEnd, len, alignment, memoryType, phys_addr); - return SCE_OK; + return ORBIS_OK; } s32 PS4_SYSV_ABI sceKernelAllocateMainDirectMemory(size_t len, size_t alignment, int memoryType, @@ -96,7 +96,7 @@ s32 PS4_SYSV_ABI sceKernelVirtualQuery(const void* addr, int flags, OrbisVirtual size_t infoSize) { LOG_INFO(Kernel_Vmm, "called addr = {}, flags = {:#x}", fmt::ptr(addr), flags); if (!addr) { - return SCE_KERNEL_ERROR_EACCES; + return ORBIS_KERNEL_ERROR_EACCES; } auto* memory = Core::Memory::Instance(); return memory->VirtualQuery(std::bit_cast(addr), flags, info); @@ -108,16 +108,16 @@ s32 PS4_SYSV_ABI sceKernelReserveVirtualRange(void** addr, u64 len, int flags, u if (addr == nullptr) { LOG_ERROR(Kernel_Vmm, "Address is invalid!"); - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } if (len == 0 || !Common::Is16KBAligned(len)) { LOG_ERROR(Kernel_Vmm, "Map size is either zero or not 16KB aligned!"); - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } if (alignment != 0) { if ((!std::has_single_bit(alignment) && !Common::Is16KBAligned(alignment))) { LOG_ERROR(Kernel_Vmm, "Alignment value is invalid!"); - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } } @@ -126,7 +126,7 @@ s32 PS4_SYSV_ABI sceKernelReserveVirtualRange(void** addr, u64 len, int flags, u const auto map_flags = static_cast(flags); memory->Reserve(addr, in_addr, len, map_flags, alignment); - return SCE_OK; + return ORBIS_OK; } int PS4_SYSV_ABI sceKernelMapNamedDirectMemory(void** addr, u64 len, int prot, int flags, @@ -139,16 +139,16 @@ int PS4_SYSV_ABI sceKernelMapNamedDirectMemory(void** addr, u64 len, int prot, i if (len == 0 || !Common::Is16KBAligned(len)) { LOG_ERROR(Kernel_Vmm, "Map size is either zero or not 16KB aligned!"); - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } if (!Common::Is16KBAligned(directMemoryStart)) { LOG_ERROR(Kernel_Vmm, "Start address is not 16KB aligned!"); - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } if (alignment != 0) { if ((!std::has_single_bit(alignment) && !Common::Is16KBAligned(alignment))) { LOG_ERROR(Kernel_Vmm, "Alignment value is invalid!"); - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } } diff --git a/src/core/libraries/kernel/thread_management.cpp b/src/core/libraries/kernel/thread_management.cpp index 6319b7c2f..d9ba48939 100644 --- a/src/core/libraries/kernel/thread_management.cpp +++ b/src/core/libraries/kernel/thread_management.cpp @@ -74,11 +74,11 @@ int PS4_SYSV_ABI scePthreadAttrInit(ScePthreadAttr* attr) { switch (result) { case 0: - return SCE_OK; + return ORBIS_OK; case ENOMEM: - return SCE_KERNEL_ERROR_ENOMEM; + return ORBIS_KERNEL_ERROR_ENOMEM; default: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } } @@ -90,35 +90,35 @@ int PS4_SYSV_ABI scePthreadAttrDestroy(ScePthreadAttr* attr) { *attr = nullptr; if (result == 0) { - return SCE_OK; + return ORBIS_OK; } - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int PS4_SYSV_ABI scePthreadAttrSetguardsize(ScePthreadAttr* attr, size_t guard_size) { if (attr == nullptr || *attr == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } (*attr)->guard_size = guard_size; - return SCE_OK; + return ORBIS_OK; } int PS4_SYSV_ABI scePthreadAttrGetguardsize(const ScePthreadAttr* attr, size_t* guard_size) { if (guard_size == nullptr || attr == nullptr || *attr == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } *guard_size = (*attr)->guard_size; - return SCE_OK; + return ORBIS_OK; } int PS4_SYSV_ABI scePthreadAttrGetinheritsched(const ScePthreadAttr* attr, int* inherit_sched) { if (inherit_sched == nullptr || attr == nullptr || *attr == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int result = pthread_attr_getinheritsched(&(*attr)->pth_attr, inherit_sched); @@ -134,12 +134,12 @@ int PS4_SYSV_ABI scePthreadAttrGetinheritsched(const ScePthreadAttr* attr, int* UNREACHABLE(); } - return (result == 0 ? SCE_OK : SCE_KERNEL_ERROR_EINVAL); + return (result == 0 ? ORBIS_OK : ORBIS_KERNEL_ERROR_EINVAL); } int PS4_SYSV_ABI scePthreadAttrGetdetachstate(const ScePthreadAttr* attr, int* state) { if (state == nullptr || attr == nullptr || *attr == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } // int result = pthread_attr_getdetachstate(&(*attr)->pth_attr, state); @@ -157,12 +157,12 @@ int PS4_SYSV_ABI scePthreadAttrGetdetachstate(const ScePthreadAttr* attr, int* s UNREACHABLE(); } - return (result == 0 ? SCE_OK : SCE_KERNEL_ERROR_EINVAL); + return (result == 0 ? ORBIS_OK : ORBIS_KERNEL_ERROR_EINVAL); } int PS4_SYSV_ABI scePthreadAttrSetdetachstate(ScePthreadAttr* attr, int detachstate) { if (attr == nullptr || *attr == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int pstate = PTHREAD_CREATE_JOINABLE; @@ -180,12 +180,12 @@ int PS4_SYSV_ABI scePthreadAttrSetdetachstate(ScePthreadAttr* attr, int detachst // int result = pthread_attr_setdetachstate(&(*attr)->pth_attr, pstate); int result = 0; (*attr)->detached = (pstate == PTHREAD_CREATE_DETACHED); - return result == 0 ? SCE_OK : SCE_KERNEL_ERROR_EINVAL; + return result == 0 ? ORBIS_OK : ORBIS_KERNEL_ERROR_EINVAL; } int PS4_SYSV_ABI scePthreadAttrSetinheritsched(ScePthreadAttr* attr, int inheritSched) { if (attr == nullptr || *attr == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int pinherit_sched = PTHREAD_INHERIT_SCHED; @@ -202,14 +202,14 @@ int PS4_SYSV_ABI scePthreadAttrSetinheritsched(ScePthreadAttr* attr, int inherit int result = pthread_attr_setinheritsched(&(*attr)->pth_attr, pinherit_sched); - return result == 0 ? SCE_OK : SCE_KERNEL_ERROR_EINVAL; + return result == 0 ? ORBIS_OK : ORBIS_KERNEL_ERROR_EINVAL; } int PS4_SYSV_ABI scePthreadAttrGetschedparam(const ScePthreadAttr* attr, SceKernelSchedParam* param) { if (param == nullptr || attr == nullptr || *attr == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int result = pthread_attr_getschedparam(&(*attr)->pth_attr, param); @@ -222,13 +222,13 @@ int PS4_SYSV_ABI scePthreadAttrGetschedparam(const ScePthreadAttr* attr, param->sched_priority = 700; } - return result == 0 ? SCE_OK : SCE_KERNEL_ERROR_EINVAL; + return result == 0 ? ORBIS_OK : ORBIS_KERNEL_ERROR_EINVAL; } int PS4_SYSV_ABI scePthreadAttrSetschedparam(ScePthreadAttr* attr, const SceKernelSchedParam* param) { if (param == nullptr || attr == nullptr || *attr == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } SceKernelSchedParam pparam{}; @@ -243,12 +243,12 @@ int PS4_SYSV_ABI scePthreadAttrSetschedparam(ScePthreadAttr* attr, // We always use SCHED_OTHER for now, so don't call this for now. // int result = pthread_attr_setschedparam(&(*attr)->pth_attr, &pparam); int result = 0; - return result == 0 ? SCE_OK : SCE_KERNEL_ERROR_EINVAL; + return result == 0 ? ORBIS_OK : ORBIS_KERNEL_ERROR_EINVAL; } int PS4_SYSV_ABI scePthreadAttrGetschedpolicy(const ScePthreadAttr* attr, int* policy) { if (policy == nullptr || attr == nullptr || *attr == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int result = pthread_attr_getschedpolicy(&(*attr)->pth_attr, policy); @@ -267,12 +267,12 @@ int PS4_SYSV_ABI scePthreadAttrGetschedpolicy(const ScePthreadAttr* attr, int* p UNREACHABLE(); } - return result == 0 ? SCE_OK : SCE_KERNEL_ERROR_EINVAL; + return result == 0 ? ORBIS_OK : ORBIS_KERNEL_ERROR_EINVAL; } int PS4_SYSV_ABI scePthreadAttrSetschedpolicy(ScePthreadAttr* attr, int policy) { if (attr == nullptr || *attr == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int ppolicy = SCHED_OTHER; // winpthreads only supports SCHED_OTHER @@ -282,7 +282,7 @@ int PS4_SYSV_ABI scePthreadAttrSetschedpolicy(ScePthreadAttr* attr, int policy) (*attr)->policy = policy; int result = pthread_attr_setschedpolicy(&(*attr)->pth_attr, ppolicy); - return result == 0 ? SCE_OK : SCE_KERNEL_ERROR_EINVAL; + return result == 0 ? ORBIS_OK : ORBIS_KERNEL_ERROR_EINVAL; } ScePthread PS4_SYSV_ABI scePthreadSelf() { @@ -294,51 +294,51 @@ int PS4_SYSV_ABI scePthreadAttrSetaffinity(ScePthreadAttr* pattr, LOG_INFO(Kernel_Pthread, "called"); if (pattr == nullptr || *pattr == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } (*pattr)->affinity = mask; - return SCE_OK; + return ORBIS_OK; } int PS4_SYSV_ABI scePthreadAttrGetaffinity(const ScePthreadAttr* pattr, /* SceKernelCpumask*/ u64* mask) { if (pattr == nullptr || *pattr == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } *mask = (*pattr)->affinity; - return SCE_OK; + return ORBIS_OK; } int PS4_SYSV_ABI scePthreadAttrGetstackaddr(const ScePthreadAttr* attr, void** stack_addr) { if (stack_addr == nullptr || attr == nullptr || *attr == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } size_t stack_size = 0; int result = pthread_attr_getstack(&(*attr)->pth_attr, stack_addr, &stack_size); - return result == 0 ? SCE_OK : SCE_KERNEL_ERROR_EINVAL; + return result == 0 ? ORBIS_OK : ORBIS_KERNEL_ERROR_EINVAL; } int PS4_SYSV_ABI scePthreadAttrGetstacksize(const ScePthreadAttr* attr, size_t* stack_size) { if (stack_size == nullptr || attr == nullptr || *attr == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int result = pthread_attr_getstacksize(&(*attr)->pth_attr, stack_size); - return result == 0 ? SCE_OK : SCE_KERNEL_ERROR_EINVAL; + return result == 0 ? ORBIS_OK : ORBIS_KERNEL_ERROR_EINVAL; } int PS4_SYSV_ABI scePthreadAttrSetstackaddr(ScePthreadAttr* attr, void* addr) { if (addr == nullptr || attr == nullptr || *attr == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } size_t stack_size = 0; @@ -346,25 +346,25 @@ int PS4_SYSV_ABI scePthreadAttrSetstackaddr(ScePthreadAttr* attr, void* addr) { int result = pthread_attr_setstack(&(*attr)->pth_attr, addr, stack_size); - return result == 0 ? SCE_OK : SCE_KERNEL_ERROR_EINVAL; + return result == 0 ? ORBIS_OK : ORBIS_KERNEL_ERROR_EINVAL; } int PS4_SYSV_ABI scePthreadAttrSetstacksize(ScePthreadAttr* attr, size_t stack_size) { if (stack_size == 0 || attr == nullptr || *attr == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int result = pthread_attr_setstacksize(&(*attr)->pth_attr, stack_size); - return result == 0 ? SCE_OK : SCE_KERNEL_ERROR_EINVAL; + return result == 0 ? ORBIS_OK : ORBIS_KERNEL_ERROR_EINVAL; } int PS4_SYSV_ABI posix_pthread_attr_init(ScePthreadAttr* attr) { int result = scePthreadAttrInit(attr); if (result < 0) { - int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; return rt; } @@ -374,8 +374,8 @@ int PS4_SYSV_ABI posix_pthread_attr_init(ScePthreadAttr* attr) { int PS4_SYSV_ABI posix_pthread_attr_setstacksize(ScePthreadAttr* attr, size_t stacksize) { int result = scePthreadAttrSetstacksize(attr, stacksize); if (result < 0) { - int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; return rt; } @@ -386,7 +386,7 @@ int PS4_SYSV_ABI scePthreadSetaffinity(ScePthread thread, const /*SceKernelCpuma LOG_INFO(Kernel_Pthread, "called"); if (thread == nullptr) { - return SCE_KERNEL_ERROR_ESRCH; + return ORBIS_KERNEL_ERROR_ESRCH; } auto result = scePthreadAttrSetaffinity(&thread->attr, mask); @@ -398,7 +398,7 @@ int PS4_SYSV_ABI scePthreadGetaffinity(ScePthread thread, /*SceKernelCpumask*/ u LOG_INFO(Kernel_Pthread, "called"); if (thread == nullptr) { - return SCE_KERNEL_ERROR_ESRCH; + return ORBIS_KERNEL_ERROR_ESRCH; } auto result = scePthreadAttrGetaffinity(&thread->attr, mask); @@ -426,7 +426,7 @@ int PS4_SYSV_ABI scePthreadMutexInit(ScePthreadMutex* mutex, const ScePthreadMut const ScePthreadMutexattr* attr; if (mutex == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } if (mutex_attr == nullptr) { attr = g_pthread_cxt->getDefaultMutexattr(); @@ -453,22 +453,22 @@ int PS4_SYSV_ABI scePthreadMutexInit(ScePthreadMutex* mutex, const ScePthreadMut switch (result) { case 0: - return SCE_OK; + return ORBIS_OK; case EAGAIN: - return SCE_KERNEL_ERROR_EAGAIN; + return ORBIS_KERNEL_ERROR_EAGAIN; case EINVAL: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; case ENOMEM: - return SCE_KERNEL_ERROR_ENOMEM; + return ORBIS_KERNEL_ERROR_ENOMEM; default: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } } int PS4_SYSV_ABI scePthreadMutexDestroy(ScePthreadMutex* mutex) { if (mutex == nullptr || *mutex == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int result = pthread_mutex_destroy(&(*mutex)->pth_mutex); @@ -480,12 +480,12 @@ int PS4_SYSV_ABI scePthreadMutexDestroy(ScePthreadMutex* mutex) { switch (result) { case 0: - return SCE_OK; + return ORBIS_OK; case EBUSY: - return SCE_KERNEL_ERROR_EBUSY; + return ORBIS_KERNEL_ERROR_EBUSY; case EINVAL: default: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } } int PS4_SYSV_ABI scePthreadMutexattrInit(ScePthreadMutexattr* attr) { @@ -498,11 +498,11 @@ int PS4_SYSV_ABI scePthreadMutexattrInit(ScePthreadMutexattr* attr) { switch (result) { case 0: - return SCE_OK; + return ORBIS_OK; case ENOMEM: - return SCE_KERNEL_ERROR_ENOMEM; + return ORBIS_KERNEL_ERROR_ENOMEM; default: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } } @@ -525,7 +525,7 @@ int PS4_SYSV_ABI scePthreadMutexattrSettype(ScePthreadMutexattr* attr, int type) int result = pthread_mutexattr_settype(&(*attr)->pth_mutex_attr, ptype); - return result == 0 ? SCE_OK : SCE_KERNEL_ERROR_EINVAL; + return result == 0 ? ORBIS_OK : ORBIS_KERNEL_ERROR_EINVAL; } int PS4_SYSV_ABI scePthreadMutexattrSetprotocol(ScePthreadMutexattr* attr, int protocol) { @@ -550,13 +550,13 @@ int PS4_SYSV_ABI scePthreadMutexattrSetprotocol(ScePthreadMutexattr* attr, int p int result = pthread_mutexattr_setprotocol(&(*attr)->pth_mutex_attr, pprotocol); #endif (*attr)->pprotocol = pprotocol; - return result == 0 ? SCE_OK : SCE_KERNEL_ERROR_EINVAL; + return result == 0 ? ORBIS_OK : ORBIS_KERNEL_ERROR_EINVAL; } int PS4_SYSV_ABI scePthreadMutexLock(ScePthreadMutex* mutex) { mutex = createMutex(mutex); if (mutex == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int result = pthread_mutex_lock(&(*mutex)->pth_mutex); @@ -566,22 +566,22 @@ int PS4_SYSV_ABI scePthreadMutexLock(ScePthreadMutex* mutex) { switch (result) { case 0: - return SCE_OK; + return ORBIS_OK; case EAGAIN: - return SCE_KERNEL_ERROR_EAGAIN; + return ORBIS_KERNEL_ERROR_EAGAIN; case EINVAL: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; case EDEADLK: - return SCE_KERNEL_ERROR_EDEADLK; + return ORBIS_KERNEL_ERROR_EDEADLK; default: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } } int PS4_SYSV_ABI scePthreadMutexUnlock(ScePthreadMutex* mutex) { mutex = createMutex(mutex); if (mutex == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int result = pthread_mutex_unlock(&(*mutex)->pth_mutex); @@ -591,13 +591,13 @@ int PS4_SYSV_ABI scePthreadMutexUnlock(ScePthreadMutex* mutex) { switch (result) { case 0: - return SCE_OK; + return ORBIS_OK; case EINVAL: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; case EPERM: - return SCE_KERNEL_ERROR_EPERM; + return ORBIS_KERNEL_ERROR_EPERM; default: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } } @@ -609,11 +609,11 @@ int PS4_SYSV_ABI scePthreadMutexattrDestroy(ScePthreadMutexattr* attr) { switch (result) { case 0: - return SCE_OK; + return ORBIS_OK; case ENOMEM: - return SCE_KERNEL_ERROR_ENOMEM; + return ORBIS_KERNEL_ERROR_ENOMEM; default: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } } @@ -635,7 +635,7 @@ ScePthreadCond* createCond(ScePthreadCond* addr) { int PS4_SYSV_ABI scePthreadCondInit(ScePthreadCond* cond, const ScePthreadCondattr* attr, const char* name) { if (cond == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } if (attr == nullptr) { @@ -658,15 +658,15 @@ int PS4_SYSV_ABI scePthreadCondInit(ScePthreadCond* cond, const ScePthreadCondat switch (result) { case 0: - return SCE_OK; + return ORBIS_OK; case EAGAIN: - return SCE_KERNEL_ERROR_EAGAIN; + return ORBIS_KERNEL_ERROR_EAGAIN; case EINVAL: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; case ENOMEM: - return SCE_KERNEL_ERROR_ENOMEM; + return ORBIS_KERNEL_ERROR_ENOMEM; default: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } } @@ -677,34 +677,34 @@ int PS4_SYSV_ABI scePthreadCondattrInit(ScePthreadCondattr* attr) { switch (result) { case 0: - return SCE_OK; + return ORBIS_OK; case ENOMEM: - return SCE_KERNEL_ERROR_ENOMEM; + return ORBIS_KERNEL_ERROR_ENOMEM; default: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } } int PS4_SYSV_ABI scePthreadCondBroadcast(ScePthreadCond* cond) { cond = createCond(cond); if (cond == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int result = pthread_cond_broadcast(&(*cond)->cond); LOG_TRACE(Kernel_Pthread, "called name={}, result={}", (*cond)->name, result); - return (result == 0 ? SCE_OK : SCE_KERNEL_ERROR_EINVAL); + return (result == 0 ? ORBIS_OK : ORBIS_KERNEL_ERROR_EINVAL); } int PS4_SYSV_ABI scePthreadCondTimedwait(ScePthreadCond* cond, ScePthreadMutex* mutex, u64 usec) { cond = createCond(cond); if (cond == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } if (mutex == nullptr || *mutex == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } timespec time{}; time.tv_sec = usec / 1000000; @@ -715,21 +715,21 @@ int PS4_SYSV_ABI scePthreadCondTimedwait(ScePthreadCond* cond, ScePthreadMutex* switch (result) { case 0: - return SCE_OK; + return ORBIS_OK; case ETIMEDOUT: - return SCE_KERNEL_ERROR_ETIMEDOUT; + return ORBIS_KERNEL_ERROR_ETIMEDOUT; case EINTR: - return SCE_KERNEL_ERROR_EINTR; + return ORBIS_KERNEL_ERROR_EINTR; case EAGAIN: - return SCE_KERNEL_ERROR_EAGAIN; + return ORBIS_KERNEL_ERROR_EAGAIN; default: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } } int PS4_SYSV_ABI scePthreadCondDestroy(ScePthreadCond* cond) { if (cond == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int result = pthread_cond_destroy(&(*cond)->cond); @@ -740,11 +740,11 @@ int PS4_SYSV_ABI scePthreadCondDestroy(ScePthreadCond* cond) { switch (result) { case 0: - return SCE_OK; + return ORBIS_OK; case EBUSY: - return SCE_KERNEL_ERROR_EBUSY; + return ORBIS_KERNEL_ERROR_EBUSY; default: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } } @@ -752,8 +752,8 @@ int PS4_SYSV_ABI posix_pthread_mutex_init(ScePthreadMutex* mutex, const ScePthre // LOG_INFO(Kernel_Pthread, "posix pthread_mutex_init redirect to scePthreadMutexInit"); int result = scePthreadMutexInit(mutex, attr, nullptr); if (result < 0) { - int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; return rt; } @@ -764,8 +764,8 @@ int PS4_SYSV_ABI posix_pthread_mutex_lock(ScePthreadMutex* mutex) { // LOG_INFO(Kernel_Pthread, "posix pthread_mutex_lock redirect to scePthreadMutexLock"); int result = scePthreadMutexLock(mutex); if (result < 0) { - int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; return rt; } @@ -776,8 +776,8 @@ int PS4_SYSV_ABI posix_pthread_mutex_unlock(ScePthreadMutex* mutex) { // LOG_INFO(Kernel_Pthread, "posix pthread_mutex_unlock redirect to scePthreadMutexUnlock"); int result = scePthreadMutexUnlock(mutex); if (result < 0) { - int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; return rt; } @@ -787,8 +787,8 @@ int PS4_SYSV_ABI posix_pthread_mutex_unlock(ScePthreadMutex* mutex) { int PS4_SYSV_ABI posix_pthread_mutex_destroy(ScePthreadMutex* mutex) { int result = scePthreadMutexDestroy(mutex); if (result < 0) { - int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; return rt; } @@ -798,8 +798,8 @@ int PS4_SYSV_ABI posix_pthread_mutex_destroy(ScePthreadMutex* mutex) { int PS4_SYSV_ABI posix_pthread_cond_wait(ScePthreadCond* cond, ScePthreadMutex* mutex) { int result = scePthreadCondWait(cond, mutex); if (result < 0) { - int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; return rt; } @@ -810,8 +810,8 @@ int PS4_SYSV_ABI posix_pthread_cond_timedwait(ScePthreadCond* cond, ScePthreadMu u64 usec) { int result = scePthreadCondTimedwait(cond, mutex, usec); if (result < 0) { - int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; return rt; } @@ -821,8 +821,8 @@ int PS4_SYSV_ABI posix_pthread_cond_timedwait(ScePthreadCond* cond, ScePthreadMu int PS4_SYSV_ABI posix_pthread_cond_broadcast(ScePthreadCond* cond) { int result = scePthreadCondBroadcast(cond); if (result != 0) { - int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; return rt; } @@ -832,8 +832,8 @@ int PS4_SYSV_ABI posix_pthread_cond_broadcast(ScePthreadCond* cond) { int PS4_SYSV_ABI posix_pthread_mutexattr_init(ScePthreadMutexattr* attr) { int result = scePthreadMutexattrInit(attr); if (result < 0) { - int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; return rt; } @@ -843,8 +843,8 @@ int PS4_SYSV_ABI posix_pthread_mutexattr_init(ScePthreadMutexattr* attr) { int PS4_SYSV_ABI posix_pthread_mutexattr_settype(ScePthreadMutexattr* attr, int type) { int result = scePthreadMutexattrSettype(attr, type); if (result < 0) { - int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; return rt; } @@ -905,7 +905,7 @@ static int pthread_mutex_timedlock(pthread_mutex_t* mutex, const struct timespec int PS4_SYSV_ABI scePthreadMutexTimedlock(ScePthreadMutex* mutex, u64 usec) { mutex = createMutex(mutex); if (mutex == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } timespec time{}; @@ -915,21 +915,21 @@ int PS4_SYSV_ABI scePthreadMutexTimedlock(ScePthreadMutex* mutex, u64 usec) { switch (result) { case 0: - return SCE_OK; + return ORBIS_OK; case ETIMEDOUT: - return SCE_KERNEL_ERROR_ETIMEDOUT; + return ORBIS_KERNEL_ERROR_ETIMEDOUT; case EINTR: - return SCE_KERNEL_ERROR_EINTR; + return ORBIS_KERNEL_ERROR_EINTR; case EAGAIN: - return SCE_KERNEL_ERROR_EAGAIN; + return ORBIS_KERNEL_ERROR_EAGAIN; default: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } } static int pthread_copy_attributes(ScePthreadAttr* dst, const ScePthreadAttr* src) { if (dst == nullptr || *dst == nullptr || src == nullptr || *src == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } u64 mask = 0; @@ -970,7 +970,7 @@ static int pthread_copy_attributes(ScePthreadAttr* dst, const ScePthreadAttr* sr int PS4_SYSV_ABI scePthreadAttrGet(ScePthread thread, ScePthreadAttr* attr) { if (thread == nullptr || attr == nullptr || *attr == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } return pthread_copy_attributes(attr, &thread->attr); @@ -1003,7 +1003,7 @@ static void* run_thread(void* arg) { int PS4_SYSV_ABI scePthreadCreate(ScePthread* thread, const ScePthreadAttr* attr, PthreadEntryFunc start_routine, void* arg, const char* name) { if (thread == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } auto* pthread_pool = g_pthread_cxt->GetPthreadPool(); @@ -1040,17 +1040,17 @@ int PS4_SYSV_ABI scePthreadCreate(ScePthread* thread, const ScePthreadAttr* attr switch (result) { case 0: - return SCE_OK; + return ORBIS_OK; case ENOMEM: - return SCE_KERNEL_ERROR_ENOMEM; + return ORBIS_KERNEL_ERROR_ENOMEM; case EAGAIN: - return SCE_KERNEL_ERROR_EAGAIN; + return ORBIS_KERNEL_ERROR_EAGAIN; case EDEADLK: - return SCE_KERNEL_ERROR_EDEADLK; + return ORBIS_KERNEL_ERROR_EDEADLK; case EPERM: - return SCE_KERNEL_ERROR_EPERM; + return ORBIS_KERNEL_ERROR_EPERM; default: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } } @@ -1089,9 +1089,9 @@ int PS4_SYSV_ABI scePthreadAttrGetstack(ScePthreadAttr* attr, void** addr, size_ LOG_INFO(Kernel_Pthread, "scePthreadAttrGetstack: result = {}", result); if (result == 0) { - return SCE_OK; + return ORBIS_OK; } - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int PS4_SYSV_ABI scePthreadAttrSetstack(ScePthreadAttr* attr, void* addr, size_t size) { @@ -1134,7 +1134,7 @@ ScePthread PS4_SYSV_ABI posix_pthread_self() { int PS4_SYSV_ABI scePthreadCondSignal(ScePthreadCond* cond) { cond = createCond(cond); if (cond == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int result = pthread_cond_signal(&(*cond)->cond); @@ -1143,21 +1143,21 @@ int PS4_SYSV_ABI scePthreadCondSignal(ScePthreadCond* cond) { switch (result) { case 0: - return SCE_OK; + return ORBIS_OK; case EBUSY: - return SCE_KERNEL_ERROR_EBUSY; + return ORBIS_KERNEL_ERROR_EBUSY; default: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } } int PS4_SYSV_ABI scePthreadCondWait(ScePthreadCond* cond, ScePthreadMutex* mutex) { cond = createCond(cond); if (cond == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } if (mutex == nullptr || *mutex == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int result = pthread_cond_wait(&(*cond)->cond, &(*mutex)->pth_mutex); @@ -1165,19 +1165,19 @@ int PS4_SYSV_ABI scePthreadCondWait(ScePthreadCond* cond, ScePthreadMutex* mutex switch (result) { case 0: - return SCE_OK; + return ORBIS_OK; case EINTR: - return SCE_KERNEL_ERROR_EINTR; + return ORBIS_KERNEL_ERROR_EINTR; case EAGAIN: - return SCE_KERNEL_ERROR_EAGAIN; + return ORBIS_KERNEL_ERROR_EAGAIN; default: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } } int PS4_SYSV_ABI scePthreadCondattrDestroy(ScePthreadCondattr* attr) { if (attr == nullptr) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int result = pthread_condattr_destroy(&(*attr)->cond_attr); @@ -1185,11 +1185,11 @@ int PS4_SYSV_ABI scePthreadCondattrDestroy(ScePthreadCondattr* attr) { switch (result) { case 0: - return SCE_OK; + return ORBIS_OK; case ENOMEM: - return SCE_KERNEL_ERROR_ENOMEM; + return ORBIS_KERNEL_ERROR_ENOMEM; default: - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } } @@ -1254,8 +1254,8 @@ int PS4_SYSV_ABI posix_pthread_mutex_trylock(ScePthreadMutex* mutex) { int PS4_SYSV_ABI posix_pthread_attr_destroy(ScePthreadAttr* attr) { int result = scePthreadAttrDestroy(attr); if (result < 0) { - int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; return rt; } @@ -1266,8 +1266,8 @@ int PS4_SYSV_ABI posix_pthread_attr_setschedparam(ScePthreadAttr* attr, const SceKernelSchedParam* param) { int result = scePthreadAttrSetschedparam(attr, param); if (result < 0) { - int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; return rt; } @@ -1277,8 +1277,8 @@ int PS4_SYSV_ABI posix_pthread_attr_setschedparam(ScePthreadAttr* attr, int PS4_SYSV_ABI posix_pthread_attr_setinheritsched(ScePthreadAttr* attr, int inheritSched) { int result = scePthreadAttrSetinheritsched(attr, inheritSched); if (result < 0) { - int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; return rt; } @@ -1288,8 +1288,8 @@ int PS4_SYSV_ABI posix_pthread_attr_setinheritsched(ScePthreadAttr* attr, int in int PS4_SYSV_ABI posix_pthread_setprio(ScePthread thread, int prio) { int result = scePthreadSetprio(thread, prio); if (result < 0) { - int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; return rt; } @@ -1300,8 +1300,8 @@ int PS4_SYSV_ABI posix_pthread_attr_setdetachstate(ScePthreadAttr* attr, int det // LOG_INFO(Kernel_Pthread, "posix pthread_mutexattr_init redirect to scePthreadMutexattrInit"); int result = scePthreadAttrSetdetachstate(attr, detachstate); if (result < 0) { - int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; return rt; } @@ -1313,8 +1313,8 @@ int PS4_SYSV_ABI posix_pthread_create_name_np(ScePthread* thread, const ScePthre const char* name) { int result = scePthreadCreate(thread, attr, start_routine, arg, name); if (result != 0) { - int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; return rt; } @@ -1347,8 +1347,8 @@ int PS4_SYSV_ABI posix_pthread_cond_init(ScePthreadCond* cond, const ScePthreadC // LOG_INFO(Kernel_Pthread, "posix pthread_mutex_init redirect to scePthreadMutexInit"); int result = scePthreadCondInit(cond, attr, "NoName"); if (result < 0) { - int rt = result > SCE_KERNEL_ERROR_UNKNOWN && result <= SCE_KERNEL_ERROR_ESTOP - ? result + -SCE_KERNEL_ERROR_UNKNOWN + int rt = result > ORBIS_KERNEL_ERROR_UNKNOWN && result <= ORBIS_KERNEL_ERROR_ESTOP + ? result + -ORBIS_KERNEL_ERROR_UNKNOWN : POSIX_EOTHER; return rt; } @@ -1491,7 +1491,7 @@ int PS4_SYSV_ABI posix_pthread_condattr_destroy(ScePthreadCondattr* attr) { int PS4_SYSV_ABI posix_pthread_condattr_setclock(ScePthreadCondattr* attr, clockid_t clock) { (*attr)->clock = clock; - return SCE_OK; + return ORBIS_OK; } int PS4_SYSV_ABI posix_pthread_getschedparam(ScePthread thread, int* policy, @@ -1511,7 +1511,7 @@ int PS4_SYSV_ABI posix_pthread_attr_getschedpolicy(const ScePthreadAttr* attr, i int PS4_SYSV_ABI scePthreadRename(ScePthread thread, const char* name) { thread->name = name; LOG_INFO(Kernel_Pthread, "scePthreadRename: name = {}", thread->name); - return SCE_OK; + return ORBIS_OK; } void pthreadSymbolsRegister(Core::Loader::SymbolsResolver* sym) { diff --git a/src/core/libraries/kernel/threads/semaphore.cpp b/src/core/libraries/kernel/threads/semaphore.cpp index 5304dc57b..05ef21f95 100644 --- a/src/core/libraries/kernel/threads/semaphore.cpp +++ b/src/core/libraries/kernel/threads/semaphore.cpp @@ -100,15 +100,15 @@ public: int GetResult(bool timed_out) { if (timed_out) { - return SCE_KERNEL_ERROR_ETIMEDOUT; + return ORBIS_KERNEL_ERROR_ETIMEDOUT; } if (was_deleted) { - return SCE_KERNEL_ERROR_EACCES; + return ORBIS_KERNEL_ERROR_EACCES; } if (was_cancled) { - return SCE_KERNEL_ERROR_ECANCELED; + return ORBIS_KERNEL_ERROR_ECANCELED; } - return SCE_OK; + return ORBIS_OK; } int Wait(std::unique_lock& lk, u32* timeout) { @@ -203,7 +203,7 @@ int PS4_SYSV_ABI sceKernelCancelSema(OrbisKernelSema sem, s32 setCount, s32* pNu int PS4_SYSV_ABI sceKernelDeleteSema(OrbisKernelSema sem) { if (!sem) { - return SCE_KERNEL_ERROR_ESRCH; + return ORBIS_KERNEL_ERROR_ESRCH; } delete sem; return ORBIS_OK; diff --git a/src/core/libraries/kernel/time_management.cpp b/src/core/libraries/kernel/time_management.cpp index c4854937b..5fcdaca15 100644 --- a/src/core/libraries/kernel/time_management.cpp +++ b/src/core/libraries/kernel/time_management.cpp @@ -82,7 +82,7 @@ u32 PS4_SYSV_ABI sceKernelSleep(u32 seconds) { int PS4_SYSV_ABI sceKernelClockGettime(s32 clock_id, OrbisKernelTimespec* tp) { if (tp == nullptr) { - return SCE_KERNEL_ERROR_EFAULT; + return ORBIS_KERNEL_ERROR_EFAULT; } clockid_t pclock_id = CLOCK_REALTIME; switch (clock_id) { @@ -107,9 +107,9 @@ int PS4_SYSV_ABI sceKernelClockGettime(s32 clock_id, OrbisKernelTimespec* tp) { tp->tv_sec = t.tv_sec; tp->tv_nsec = t.tv_nsec; if (result == 0) { - return SCE_OK; + return ORBIS_OK; } - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int PS4_SYSV_ABI posix_clock_gettime(s32 clock_id, OrbisKernelTimespec* time) { @@ -128,11 +128,11 @@ int PS4_SYSV_ABI posix_nanosleep(const OrbisKernelTimespec* rqtp, OrbisKernelTim int PS4_SYSV_ABI sceKernelNanosleep(const OrbisKernelTimespec* rqtp, OrbisKernelTimespec* rmtp) { if (!rqtp || !rmtp) { - return SCE_KERNEL_ERROR_EFAULT; + return ORBIS_KERNEL_ERROR_EFAULT; } if (rqtp->tv_sec < 0 || rqtp->tv_nsec < 0) { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } return posix_nanosleep(rqtp, rmtp); @@ -185,7 +185,7 @@ s32 PS4_SYSV_ABI sceKernelGettimezone(OrbisKernelTimezone* tz) { int PS4_SYSV_ABI posix_clock_getres(u32 clock_id, OrbisKernelTimespec* res) { if (res == nullptr) { - return SCE_KERNEL_ERROR_EFAULT; + return ORBIS_KERNEL_ERROR_EFAULT; } clockid_t pclock_id = CLOCK_REALTIME; switch (clock_id) { @@ -209,9 +209,9 @@ int PS4_SYSV_ABI posix_clock_getres(u32 clock_id, OrbisKernelTimespec* res) { res->tv_sec = t.tv_sec; res->tv_nsec = t.tv_nsec; if (result == 0) { - return SCE_OK; + return ORBIS_OK; } - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } int PS4_SYSV_ABI sceKernelConvertLocaltimeToUtc(time_t param_1, int64_t param_2, time_t* seconds, @@ -225,9 +225,9 @@ int PS4_SYSV_ABI sceKernelConvertLocaltimeToUtc(time_t param_1, int64_t param_2, if (dst_seconds) *dst_seconds = timezone->tz_dsttime * 60; } else { - return SCE_KERNEL_ERROR_EINVAL; + return ORBIS_KERNEL_ERROR_EINVAL; } - return SCE_OK; + return ORBIS_OK; } void timeSymbolsRegister(Core::Loader::SymbolsResolver* sym) { diff --git a/src/core/libraries/network/net.cpp b/src/core/libraries/network/net.cpp index 958f9264e..8aeddf27e 100644 --- a/src/core/libraries/network/net.cpp +++ b/src/core/libraries/network/net.cpp @@ -19,542 +19,542 @@ namespace Libraries::Net { int PS4_SYSV_ABI in6addr_any() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI in6addr_loopback() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sce_net_dummy() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sce_net_in6addr_any() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sce_net_in6addr_linklocal_allnodes() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sce_net_in6addr_linklocal_allrouters() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sce_net_in6addr_loopback() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sce_net_in6addr_nodelocal_allnodes() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } OrbisNetId PS4_SYSV_ABI sceNetAccept(OrbisNetId s, OrbisNetSockaddr* addr, u32* paddrlen) { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetAddrConfig6GetInfo() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetAddrConfig6Start() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetAddrConfig6Stop() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetAllocateAllRouteInfo() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetBandwidthControlGetDataTraffic() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetBandwidthControlGetDefaultParam() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetBandwidthControlGetIfParam() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetBandwidthControlGetPolicy() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetBandwidthControlSetDefaultParam() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetBandwidthControlSetIfParam() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetBandwidthControlSetPolicy() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetBind(OrbisNetId s, const OrbisNetSockaddr* addr, u32 addrlen) { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetClearDnsCache() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigAddArp() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigAddArpWithInterface() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigAddIfaddr() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigAddMRoute() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigAddRoute() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigAddRoute6() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigAddRouteWithInterface() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigCleanUpAllInterfaces() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigDelArp() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigDelArpWithInterface() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigDelDefaultRoute() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigDelDefaultRoute6() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigDelIfaddr() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigDelIfaddr6() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigDelMRoute() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigDelRoute() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigDelRoute6() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigDownInterface() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigEtherGetLinkMode() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigEtherPostPlugInOutEvent() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigEtherSetLinkMode() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigFlushRoute() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigGetDefaultRoute() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigGetDefaultRoute6() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigGetIfaddr() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigGetIfaddr6() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigRoutingShowRoutingConfig() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigRoutingShowtCtlVar() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigRoutingStart() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigRoutingStop() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigSetDefaultRoute() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigSetDefaultRoute6() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigSetDefaultScope() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigSetIfaddr() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigSetIfaddr6() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigSetIfaddr6WithFlags() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigSetIfFlags() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigSetIfLinkLocalAddr6() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigSetIfmtu() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigUnsetIfFlags() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigUpInterface() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigUpInterfaceWithFlags() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanAdhocClearWakeOnWlan() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanAdhocCreate() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanAdhocGetWakeOnWlanInfo() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanAdhocJoin() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanAdhocLeave() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanAdhocPspEmuClearWakeOnWlan() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanAdhocPspEmuGetWakeOnWlanInfo() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanAdhocPspEmuSetWakeOnWlan() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanAdhocScanJoin() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanAdhocSetExtInfoElement() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanAdhocSetWakeOnWlan() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanApStart() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanApStop() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanBackgroundScanQuery() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanBackgroundScanStart() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanBackgroundScanStop() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanDiagGetDeviceInfo() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanDiagSetAntenna() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanDiagSetTxFixedRate() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanGetDeviceConfig() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanInfraGetRssiInfo() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanInfraLeave() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanInfraScanJoin() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanScan() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConfigWlanSetDeviceConfig() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetConnect() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetControl() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetDhcpdStart() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetDhcpdStop() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetDhcpGetAutoipInfo() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetDhcpGetInfo() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetDhcpGetInfoEx() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetDhcpStart() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetDhcpStop() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetDumpAbort() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetDumpCreate() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetDumpDestroy() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetDumpRead() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetDuplicateIpStart() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetDuplicateIpStop() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetEpollAbort() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetEpollControl() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetEpollCreate() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetEpollDestroy() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } @@ -564,142 +564,142 @@ int PS4_SYSV_ABI sceNetEpollWait() { } int PS4_SYSV_ABI sceNetErrnoLoc() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetEtherNtostr() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetEtherStrton() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetEventCallbackCreate() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetEventCallbackDestroy() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetEventCallbackGetError() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetEventCallbackWaitCB() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetFreeAllRouteInfo() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetArpInfo() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetDns6Info() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetDnsInfo() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetIfList() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetIfListOnce() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetIfName() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetIfnameNumList() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetMacAddress() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetMemoryPoolStats() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetNameToIndex() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetpeername() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetRandom() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetRouteInfo() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetSockInfo() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetSockInfo6() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetsockname(OrbisNetId s, OrbisNetSockaddr* addr, u32* paddrlen) { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetsockopt(OrbisNetId s, int level, int optname, void* optval, u32* optlen) { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetStatisticsInfo() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetStatisticsInfoInternal() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetGetSystemTime() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } @@ -728,62 +728,62 @@ const char* PS4_SYSV_ABI sceNetInetNtop(int af, const void* src, char* dst, u32 } int PS4_SYSV_ABI sceNetInetNtopWithScopeId() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetInetPton() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetInetPtonEx() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetInetPtonWithScopeId() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetInfoDumpStart() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetInfoDumpStop() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetInit() { - LOG_ERROR(Lib_Net, "(DUMMY) called"); + // LOG_ERRO(Lib_Net, "(DUMMY) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetInitParam() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetIoctl() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetListen() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetMemoryAllocate() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetMemoryFree() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } @@ -792,7 +792,7 @@ u32 PS4_SYSV_ABI sceNetNtohl(u32 net32) { } int PS4_SYSV_ABI sceNetNtohll() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } @@ -801,318 +801,318 @@ u16 PS4_SYSV_ABI sceNetNtohs(u16 net16) { } int PS4_SYSV_ABI sceNetPoolCreate(const char* name, int size, int flags) { - LOG_ERROR(Lib_Net, "(DUMMY) name = {} size = {} flags = {} ", std::string(name), size, flags); + // LOG_ERRO(Lib_Net, "(DUMMY) name = {} size = {} flags = {} ", std::string(name), size, flags); return ORBIS_OK; } int PS4_SYSV_ABI sceNetPoolDestroy() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetPppoeStart() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetPppoeStop() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetRecv() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetRecvfrom(OrbisNetId s, void* buf, size_t len, int flags, OrbisNetSockaddr* addr, u32* paddrlen) { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetRecvmsg() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetResolverAbort() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetResolverConnect() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetResolverConnectAbort() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetResolverConnectCreate() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetResolverConnectDestroy() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetResolverCreate() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetResolverDestroy() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetResolverGetError() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetResolverStartAton() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetResolverStartAton6() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetResolverStartNtoa() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetResolverStartNtoa6() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetResolverStartNtoaMultipleRecords() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetResolverStartNtoaMultipleRecordsEx() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetSend() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetSendmsg() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetSendto() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetSetDns6Info() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetSetDns6InfoToKernel() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetSetDnsInfo() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetSetDnsInfoToKernel() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetSetsockopt() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetShowIfconfig() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetShowIfconfigForBuffer() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetShowIfconfigWithMemory() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetShowNetstat() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetShowNetstatEx() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetShowNetstatExForBuffer() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetShowNetstatForBuffer() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetShowNetstatWithMemory() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetShowPolicy() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetShowPolicyWithMemory() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetShowRoute() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetShowRoute6() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetShowRoute6ForBuffer() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetShowRoute6WithMemory() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetShowRouteForBuffer() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetShowRouteWithMemory() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetShutdown() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetSocket(const char* name, int family, int type, int protocol) { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetSocketAbort() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetSocketClose() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetSyncCreate() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetSyncDestroy() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetSyncGet() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetSyncSignal() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetSyncWait() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetSysctl() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetTerm() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetThreadCreate() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetThreadExit() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetThreadJoin() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetUsleep() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI Func_0E707A589F751C68() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetEmulationGet() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } int PS4_SYSV_ABI sceNetEmulationSet() { - LOG_ERROR(Lib_Net, "(STUBBED) called"); + // LOG_ERRO(Lib_Net, "(STUBBED) called"); return ORBIS_OK; } diff --git a/src/core/libraries/pad/pad.cpp b/src/core/libraries/pad/pad.cpp index c9e332d21..525ca839a 100644 --- a/src/core/libraries/pad/pad.cpp +++ b/src/core/libraries/pad/pad.cpp @@ -96,7 +96,7 @@ int PS4_SYSV_ABI scePadGetControllerInformation(s32 handle, OrbisPadControllerIn pInfo->connectedCount = 1; pInfo->connected = false; pInfo->deviceClass = ORBIS_PAD_DEVICE_CLASS_STANDARD; - return SCE_OK; + return ORBIS_OK; } pInfo->touchPadInfo.pixelDensity = 1; pInfo->touchPadInfo.resolution.x = 1920; @@ -107,7 +107,7 @@ int PS4_SYSV_ABI scePadGetControllerInformation(s32 handle, OrbisPadControllerIn pInfo->connectedCount = 1; pInfo->connected = 1; pInfo->deviceClass = ORBIS_PAD_DEVICE_CLASS_STANDARD; - return SCE_OK; + return ORBIS_OK; } int PS4_SYSV_ABI scePadGetDataInternal() { @@ -350,7 +350,7 @@ int PS4_SYSV_ABI scePadReadState(s32 handle, OrbisPadData* pData) { pData->connectedCount = 1; // connectedCount; pData->deviceUniqueDataLen = 0; - return SCE_OK; + return ORBIS_OK; } int PS4_SYSV_ABI scePadReadStateExt() { diff --git a/src/core/libraries/playgo/playgo_types.h b/src/core/libraries/playgo/playgo_types.h index 62dea4f4e..52cd952c1 100644 --- a/src/core/libraries/playgo/playgo_types.h +++ b/src/core/libraries/playgo/playgo_types.h @@ -39,22 +39,4 @@ typedef enum OrbisPlayGoInstallSpeedValue { ORBIS_PLAYGO_INSTALL_SPEED_SUSPENDED = 0, ORBIS_PLAYGO_INSTALL_SPEED_TRICKLE = 1, ORBIS_PLAYGO_INSTALL_SPEED_FULL = 2 -} OrbisPlayGoInstallSpeedValue; - -constexpr int ORBIS_PLAYGO_ERROR_UNKNOWN = -2135818239; /* 0x80B20001 */ -constexpr int ORBIS_PLAYGO_ERROR_FATAL = -2135818238; /* 0x80B20002 */ -constexpr int ORBIS_PLAYGO_ERROR_NO_MEMORY = -2135818237; /* 0x80B20003 */ -constexpr int ORBIS_PLAYGO_ERROR_INVALID_ARGUMENT = -2135818236; /* 0x80B20004 */ -constexpr int ORBIS_PLAYGO_ERROR_NOT_INITIALIZED = -2135818235; /* 0x80B20005 */ -constexpr int ORBIS_PLAYGO_ERROR_ALREADY_INITIALIZED = -2135818234; /* 0x80B20006 */ -constexpr int ORBIS_PLAYGO_ERROR_ALREADY_STARTED = -2135818233; /* 0x80B20007 */ -constexpr int ORBIS_PLAYGO_ERROR_NOT_STARTED = -2135818232; /* 0x80B20008 */ -constexpr int ORBIS_PLAYGO_ERROR_BAD_HANDLE = -2135818231; /* 0x80B20009 */ -constexpr int ORBIS_PLAYGO_ERROR_BAD_POINTER = -2135818230; /* 0x80B2000A */ -constexpr int ORBIS_PLAYGO_ERROR_BAD_SIZE = -2135818229; /* 0x80B2000B */ -constexpr int ORBIS_PLAYGO_ERROR_BAD_CHUNK_ID = -2135818228; /* 0x80B2000C */ -constexpr int ORBIS_PLAYGO_ERROR_BAD_SPEED = -2135818227; /* 0x80B2000D */ -constexpr int ORBIS_PLAYGO_ERROR_NOT_SUPPORT_PLAYGO = -2135818226; /* 0x80B2000E */ -constexpr int ORBIS_PLAYGO_ERROR_EPERM = -2135818225; /* 0x80B2000F */ -constexpr int ORBIS_PLAYGO_ERROR_BAD_LOCUS = -2135818224; /* 0x80B20010 */ -constexpr int ORBIS_PLAYGO_ERROR_NEED_DATA_DISC = -2135818223; /* 0x80B20011 */ +} OrbisPlayGoInstallSpeedValue; \ No newline at end of file diff --git a/src/core/libraries/random/random.cpp b/src/core/libraries/random/random.cpp index 8147c5183..b7d75f180 100644 --- a/src/core/libraries/random/random.cpp +++ b/src/core/libraries/random/random.cpp @@ -11,7 +11,7 @@ namespace Libraries::Random { s32 PS4_SYSV_ABI sceRandomGetRandomNumber(u8* buf, size_t size) { LOG_TRACE(Lib_Random, "called"); if (size > SCE_RANDOM_MAX_SIZE) { - return SCE_RANDOM_ERROR_INVALID; + return ORBIS_RANDOM_ERROR_INVALID; } for (auto i = 0; i < size; ++i) { diff --git a/src/core/libraries/save_data/error_codes.h b/src/core/libraries/save_data/error_codes.h deleted file mode 100644 index a4a1b7a5a..000000000 --- a/src/core/libraries/save_data/error_codes.h +++ /dev/null @@ -1,28 +0,0 @@ -// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -constexpr int ORBIS_SAVE_DATA_ERROR_PARAMETER = 0x809F0000; -constexpr int ORBIS_SAVE_DATA_ERROR_NOT_INITIALIZED = 0x809F0001; -constexpr int ORBIS_SAVE_DATA_ERROR_OUT_OF_MEMORY = 0x809F0002; -constexpr int ORBIS_SAVE_DATA_ERROR_BUSY = 0x809F0003; -constexpr int ORBIS_SAVE_DATA_ERROR_NOT_MOUNTED = 0x809F0004; -constexpr int ORBIS_SAVE_DATA_ERROR_NO_PERMISSION = 0x809F0005; -constexpr int ORBIS_SAVE_DATA_ERROR_FINGERPRINT_MISMATCH = 0x809F0006; -constexpr int ORBIS_SAVE_DATA_ERROR_EXISTS = 0x809F0007; -constexpr int ORBIS_SAVE_DATA_ERROR_NOT_FOUND = 0x809F0008; -constexpr int ORBIS_SAVE_DATA_ERROR_NO_SPACE_FS = 0x809F000A; -constexpr int ORBIS_SAVE_DATA_ERROR_INTERNAL = 0x809F000B; -constexpr int ORBIS_SAVE_DATA_ERROR_MOUNT_FULL = 0x809F000C; -constexpr int ORBIS_SAVE_DATA_ERROR_BAD_MOUNTED = 0x809F000D; -constexpr int ORBIS_SAVE_DATA_ERROR_FILE_NOT_FOUND = 0x809F000E; -constexpr int ORBIS_SAVE_DATA_ERROR_BROKEN = 0x809F000F; -constexpr int ORBIS_SAVE_DATA_ERROR_INVALID_LOGIN_USER = 0x809F0011; -constexpr int ORBIS_SAVE_DATA_ERROR_MEMORY_NOT_READY = 0x809F0012; -constexpr int ORBIS_SAVE_DATA_ERROR_BACKUP_BUSY = 0x809F0013; -constexpr int ORBIS_SAVE_DATA_ERROR_NOT_REGIST_CALLBACK = 0x809F0015; -constexpr int ORBIS_SAVE_DATA_ERROR_BUSY_FOR_SAVING = 0x809F0016; -constexpr int ORBIS_SAVE_DATA_ERROR_LIMITATION_OVER = 0x809F0017; -constexpr int ORBIS_SAVE_DATA_ERROR_EVENT_BUSY = 0x809F0018; -constexpr int ORBIS_SAVE_DATA_ERROR_PARAMSFO_TRANSFER_TITLE_ID_NOT_FOUND = 0x809F0019; diff --git a/src/core/libraries/save_data/savedata.cpp b/src/core/libraries/save_data/savedata.cpp index 64237994e..4e9389c0e 100644 --- a/src/core/libraries/save_data/savedata.cpp +++ b/src/core/libraries/save_data/savedata.cpp @@ -12,7 +12,6 @@ #include "core/libraries/error_codes.h" #include "core/libraries/libs.h" #include "core/libraries/save_data/savedata.h" -#include "error_codes.h" namespace Libraries::SaveData { bool is_rw_mode = false; diff --git a/src/core/libraries/videoout/video_out.cpp b/src/core/libraries/videoout/video_out.cpp index acfcbad42..9059fef7a 100644 --- a/src/core/libraries/videoout/video_out.cpp +++ b/src/core/libraries/videoout/video_out.cpp @@ -177,7 +177,7 @@ s32 PS4_SYSV_ABI sceVideoOutGetFlipStatus(s32 handle, FlipStatus* status) { s32 PS4_SYSV_ABI sceVideoOutGetVblankStatus(int handle, SceVideoOutVblankStatus* status) { if (status == nullptr) { - return SCE_VIDEO_OUT_ERROR_INVALID_ADDRESS; + return ORBIS_VIDEO_OUT_ERROR_INVALID_ADDRESS; } auto* port = driver->GetPort(handle); @@ -321,4 +321,4 @@ void RegisterLib(Core::Loader::SymbolsResolver* sym) { sceVideoOutGetDeviceCapabilityInfo); } -} // namespace Libraries::VideoOut +} // namespace Libraries::VideoOut \ No newline at end of file diff --git a/src/core/memory.cpp b/src/core/memory.cpp index 6d0d581f9..220e845bb 100644 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp @@ -136,7 +136,7 @@ int MemoryManager::MapMemory(void** out_addr, VAddr virtual_addr, size_t size, M // Certain games perform flexible mappings on loop to determine // the available flexible memory size. Questionable but we need to handle this. if (type == VMAType::Flexible && flexible_usage + size > total_flexible_size) { - return SCE_KERNEL_ERROR_ENOMEM; + return ORBIS_KERNEL_ERROR_ENOMEM; } // When virtual addr is zero, force it to virtual_base. The guest cannot pass Fixed