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
|
#ifndef _PSP2_KERNEL_MODULEMGR_H_
#define _PSP2_KERNEL_MODULEMGR_H_
#include <psp2/types.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct
{
SceUInt size; //< this structure size (0x18)
SceUInt perms; //< probably rwx in low bits
void *vaddr; //< address in memory
SceUInt memsz; //< size in memory
SceUInt flags; //< meanig unknown
SceUInt res; //< unused?
} SceKernelSegmentInfo;
typedef struct
{
SceUInt size; //< 0x1B8 for Vita 1.x
SceUInt handle; //< kernel module handle?
SceUInt flags; //< some bits. could be priority or whatnot
char module_name[28];
SceUInt unk28;
void *module_start;
SceUInt unk30;
void *module_stop;
void *exidxTop;
void *exidxBtm;
SceUInt unk40;
SceUInt unk44;
void *tlsInit;
SceSize tlsInitSize;
SceSize tlsAreaSize;
char path[256];
SceKernelSegmentInfo segments[4];
SceUInt type; //< 6 = user-mode PRX?
} SceKernelModuleInfo;
typedef struct {
SceSize size;
} SceKernelLMOption;
typedef struct {
SceSize size;
} SceKernelULMOption;
int sceKernelGetModuleList(int flags, SceUID *modids, int *num);
int sceKernelGetModuleInfo(SceUID modid, SceKernelModuleInfo *info);
SceUID sceKernelLoadModule(char *path, int flags, SceKernelLMOption *option);
int sceKernelUnloadModule(SceUID modid, int flags, SceKernelULMOption *option);
SceUID sceKernelLoadStartModule(char *path, SceSize args, void *argp, int flags, SceKernelLMOption *option, int *status);
int sceKernelStopUnloadModule(SceUID modid, SceSize args, void *argp, int flags, SceKernelULMOption *option, int *status);
#ifdef __cplusplus
}
#endif
#endif /* _PSP2_KERNEL_MODULEMGR_H_ */
|