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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
#ifndef _PSP2_APPMGR_H_
#define _PSP2_APPMGR_H_
#include <psp2/types.h>
#ifdef __cplusplus
extern "C" {
#endif
enum {
//! Busy
SCE_APPMGR_ERROR_BUSY = 0x80802000,
//! Invalid state
SCE_APPMGR_ERROR_STATE = 0x80802013,
//! NULL pointer
SCE_APPMGR_ERROR_NULL_POINTER = 0x80802016,
//!< Invalid param
SCE_APPMGR_ERROR_INVALID = 0x8080201a,
//!< Invalid self path
SCE_APPMGR_ERROR_INVALID_SELF_PATH = 0x8080201e,
//!< argv is too long
SCE_APPMGR_ERROR_TOO_LONG_ARGV = 0x8080201d
};
enum {
SCE_APPMGR_SYSTEMEVENT_ON_RESUME = 0x10000003,
SCE_APPMGR_SYSTEMEVENT_ON_STORE_PURCHASE = 0x10000004,
SCE_APPMGR_SYSTEMEVENT_ON_NP_MESSAGE_ARRIVED = 0x10000005,
SCE_APPMGR_SYSTEMEVENT_ON_STORE_REDEMPTION = 0x10000006,
};
enum {
SCE_APPMGR_INFOBAR_VISIBILITY_INVISIBLE = 0,
SCE_APPMGR_INFOBAR_VISIBILITY_VISIBLE = 1
};
enum {
SCE_APPMGR_INFOBAR_COLOR_BLACK = 0,
SCE_APPMGR_INFOBAR_COLOR_WHITE = 1
};
enum {
SCE_APPMGR_INFOBAR_TRANSPARENCY_OPAQUE = 0,
SCE_APPMGR_INFOBAR_TRANSPARENCY_TRANSLUCENT = 1
};
typedef struct SceAppMgrSystemEvent {
int systemEvent;
uint8_t reserved[60];
} SceAppMgrSystemEvent;
typedef struct SceAppMgrAppState SceAppMgrAppState; // Missing struct
typedef struct SceAppMgrExecOptParam SceAppMgrExecOptParam; // Missing struct
#define SCE_APPMGR_MAX_APP_NAME_LENGTH (31)
int _sceAppMgrGetAppState(SceAppMgrAppState *appState, uint32_t len, uint32_t version);
/**
* static __inline int sceAppMgrGetAppState(SceAppMgrAppState *appState) {
* return _sceAppMgrGetAppState(appState, sizeof(SceAppMgrAppState), version);
* };
*/
int sceAppMgrRecieveSystemEvent(SceAppMgrSystemEvent *systemEvent);
//! Obtains the BGM port, even when it is not in front
int sceAppMgrAcquireBgmPort(void);
//! Release acquired BGM port
int sceAppMgrReleaseBgmPort(void);
//! Set infobar state
int sceAppMgrSetInfobarState(int visibility, int color, int transparency);
typedef struct sceAppMgrLoadExecOptParam {
int reserved[256 / 4];
} sceAppMgrLoadExecOptParam;
int sceAppMgrLoadExec(const char *appPath, char * const argv[],
const SceAppMgrExecOptParam *optParam);
#ifdef __cplusplus
}
#endif
#endif /* _PSP2_APPMGR_H_ */
|