summaryrefslogtreecommitdiff
path: root/include/common
diff options
context:
space:
mode:
authorReiko Asakura2020-08-20 15:43:34 -0400
committerReiko Asakura2020-08-20 15:43:34 -0400
commitf7e52fe949737f0a6c5da34e2aa3fd6a008bbff3 (patch)
tree77b1a9b459fde21a5650253351e389a6d74dcfa5 /include/common
parentMove defns psp2/apputil.h to psp2common/appmgr.h (diff)
downloadvds-libraries-f7e52fe949737f0a6c5da34e2aa3fd6a008bbff3.tar.gz
Add sceAppMgrDrmOpen/Close
Diffstat (limited to 'include/common')
-rw-r--r--include/common/appmgr.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/common/appmgr.h b/include/common/appmgr.h
index 942cccf..da3a63a 100644
--- a/include/common/appmgr.h
+++ b/include/common/appmgr.h
@@ -14,6 +14,8 @@ extern "C" {
#define SCE_APPMGR_SAVEDATA_SLOT_DETAIL_MAXSIZE 512
#define SCE_APPMGR_SAVEDATA_SLOT_ICON_PATH_MAXSIZE 64
+#define SCE_APPMGR_NP_DRM_ADDCONT_ID_SIZE 17
+
typedef SceUInt32 SceAppMgrSaveDataSlotStatus;
typedef SceUInt32 SceAppMgrSaveDataDataSaveMode;
@@ -43,6 +45,17 @@ typedef struct SceAppMgrSaveDataDataSaveItem {
SceChar8 reserved[36];
} SceAppMgrSaveDataDataSaveItem;
+typedef struct SceAppMgrDrmAddcontId {
+ SceChar8 data[SCE_APPMGR_NP_DRM_ADDCONT_ID_SIZE];
+ SceChar8 padding[3];
+} SceAppMgrDrmAddcontId;
+
+typedef struct SceAppMgrDrmAddcontParam {
+ SceSize size;
+ SceAppMgrDrmAddcontId dirName;
+ SceAppMgrMountPoint mountPoint;
+} SceAppMgrDrmAddcontParam;
+
#if defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus)
}
#endif