blob: f948b69c40ad9321d4e9943e93f2a9e1b3d1a926 (
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
|
#ifndef _PSP2_KERNEL_MODULEMGR_H_
#define _PSP2_KERNEL_MODULEMGR_H_
#include <psp2/types.h>
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?
} Psp2SegmentInfo;
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];
Psp2SegmentInfo segments[4];
SceUInt type; //< 6 = user-mode PRX?
} Psp2LoadedModuleInfo;
int sceKernelGetModuleList(int, SceUID *, unsigned int *);
int sceKernelGetModuleInfo(SceUID, Psp2LoadedModuleInfo *);
SceUID sceKernelLoadModule(const char *path, int flags, int *res);
int sceKernelUnloadModule(SceUID);
#endif
|