summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorscribam2019-01-22 23:23:15 +0100
committerscribam2019-02-09 11:26:01 +0100
commit02d4e28353ce4e80582de1cab2aa83b96ccbc8b5 (patch)
tree2ac8b9ef9cb2fc28696466bcbc6b193cc7ac20bb
parentUpdate SceAppMgrAppState (diff)
downloadvds-libraries-02d4e28353ce4e80582de1cab2aa83b96ccbc8b5.tar.gz
Add error codes
-rw-r--r--include/user/appmgr.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/user/appmgr.h b/include/user/appmgr.h
index 5c3d45a..3cb2f2a 100644
--- a/include/user/appmgr.h
+++ b/include/user/appmgr.h
@@ -13,8 +13,9 @@ typedef enum SceAppMgrErrorCode {
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_TOO_LONG_ARGV = 0x8080201D //!< argv is too long
+ SCE_APPMGR_ERROR_BGM_PORT_BUSY = 0x80803000 //!< BGM port was occupied and could not be secured
} SceAppMgrErrorCode;
typedef enum SceAppMgrSystemEventType {