summaryrefslogtreecommitdiff
path: root/include/common/appmgr.h
blob: 0d83089b5ec454ccd4823e98c6b6c3e5e7a4d2ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
	Vita Development Suite Libraries
*/

#ifndef _VDSUITE_COMMON_APPMGR_H
#define _VDSUITE_COMMON_APPMGR_H

#include_next <appmgr.h>

#if defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus)
extern "C" {
#endif

#define SCE_APPMGR_MOUNTPOINT_DATA_MAXSIZE 16

#define SCE_APPMGR_NP_DRM_ADDCONT_ID_SIZE 17

typedef struct SceAppMgrMountPoint {
	SceChar8 data[SCE_APPMGR_MOUNTPOINT_DATA_MAXSIZE];
} SceAppMgrMountPoint;

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

#endif // _VDSUITE_COMMON_APPMGR_H