blob: f9cb79f96f2ef2af2f6af8093f591f21c8df3d39 (
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
38
39
40
41
42
43
|
/*
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 Constants ---------------------------------------------------------------------------- */
/*J エラー番号 */
/*E Error code */
#define SCE_APPMGR_ERROR_NOSYS (-2139086817) /* 0x8080201F */
/*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
|