diff options
author | Reiko Asakura | 2020-09-19 16:13:58 -0400 |
---|---|---|
committer | Reiko Asakura | 2020-09-19 16:13:58 -0400 |
commit | 4b52330f2df74aa1f48551973fd0d8f851123f42 (patch) | |
tree | 33d05d23766c42367d31cc15313ddb04be6c7f8b /include/user/appmgr.h | |
parent | Add SceKernelForMono functions (diff) | |
download | vds-libraries-4b52330f2df74aa1f48551973fd0d8f851123f42.tar.gz |
Make errors signed
Diffstat (limited to 'include/user/appmgr.h')
-rw-r--r-- | include/user/appmgr.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/user/appmgr.h b/include/user/appmgr.h index 8333372..2467c24 100644 --- a/include/user/appmgr.h +++ b/include/user/appmgr.h @@ -11,13 +11,13 @@ extern "C" { #define _SCE_APPMGR_VERSION (SCE_PSP2_SDK_VERSION & 0xffff0000) typedef enum SceAppMgrErrorCode { - SCE_APPMGR_ERROR_BUSY = 0x80802000, //!< Busy - SCE_APPMGR_ERROR_STATE = 0x80802013, //!< Invalid state - SCE_APPMGR_ERROR_NULL_POINTER = 0x80802016, //!< NULL pointer - SCE_APPMGR_ERROR_INVALID = 0x8080201A, //!< Invalid param - SCE_APPMGR_ERROR_TOO_LONG_ARGV = 0x8080201D, //!< argv is too long - SCE_APPMGR_ERROR_INVALID_SELF_PATH = 0x8080201E, //!< Invalid SELF path - SCE_APPMGR_ERROR_BGM_PORT_BUSY = 0x80803000 //!< BGM port was occupied and could not be secured + SCE_APPMGR_ERROR_BUSY = (int)0x80802000, //!< Busy + SCE_APPMGR_ERROR_STATE = (int)0x80802013, //!< Invalid state + SCE_APPMGR_ERROR_NULL_POINTER = (int)0x80802016, //!< NULL pointer + SCE_APPMGR_ERROR_INVALID = (int)0x8080201A, //!< Invalid param + SCE_APPMGR_ERROR_TOO_LONG_ARGV = (int)0x8080201D, //!< argv is too long + SCE_APPMGR_ERROR_INVALID_SELF_PATH = (int)0x8080201E, //!< Invalid SELF path + SCE_APPMGR_ERROR_BGM_PORT_BUSY = (int)0x80803000 //!< BGM port was occupied and could not be secured } SceAppMgrErrorCode; typedef enum SceAppMgrSystemEventType { |