blob: ce49a80b93c99a5df5eb2ae8e9b7821fa496fe3f (
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
|
/*
Vita Development Suite Libraries
*/
#ifndef _VDSUITE_COMMON_APPMGR_H
#define _VDSUITE_COMMON_APPMGR_H
#include_next <appmgr.h>
#include <apputil.h>
#if defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus)
extern "C" {
#endif
/*J 構造体 -------------------------------------------------------------------------------- */
/*E Structures ---------------------------------------------------------------------------- */
typedef struct SceAppMgrDrmAddcontParam {
SceSize size;
SceAppUtilDrmAddcontId dirName;
SceAppUtilMountPoint mountPoint;
} SceAppMgrDrmAddcontParam;
/*J 関数 -------------------------------------------------------------------------------- */
/*E Functions --------------------------------------------------------------------------- */
SceInt32 sceAppMgrDrmOpen(const SceAppMgrDrmAddcontParam *pParam);
SceInt32 sceAppMgrDrmClose(const SceAppMgrDrmAddcontParam *pParam);
#if defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus)
}
#endif
#endif // _VDSUITE_COMMON_APPMGR_H
|