uOFW
Reverse engineered PSP kernel 6.60.
|
#include <loadcore.h>
Data Fields | |
u8 * | modPath |
u8 * | modBuf |
SceSize | modSize |
s32 | unk12 |
u32 | attr |
s32 | bootData |
u32 | argSize |
SceUID | argPartId |
This structure is used to boot system modules during the initialization of Loadcore. It represents a module object with all the necessary information needed to boot it.
u8* SceLoadCoreBootModuleInfo::modPath |
The full path (including filename) of the module.
u8* SceLoadCoreBootModuleInfo::modBuf |
The buffer with the entire file content.
SceSize SceLoadCoreBootModuleInfo::modSize |
The size of the module.
s32 SceLoadCoreBootModuleInfo::unk12 |
Unknown.
u32 SceLoadCoreBootModuleInfo::attr |
Attributes.
s32 SceLoadCoreBootModuleInfo::bootData |
Contains the API type of the module prior to the allocation of memory for the module. Once memory is allocated, bootData contains the ID of that memory partition.
u32 SceLoadCoreBootModuleInfo::argSize |
The size of the arguments passed to the module's entry function?
SceUID SceLoadCoreBootModuleInfo::argPartId |
The partition ID of the arguments passed to the module's entry function?