Code: Select all
enum PspModuleInfoAttr
{
PSP_MODULE_USER = 0,
PSP_MODULE_NO_STOP = 0x0001,
PSP_MODULE_SINGLE_LOAD = 0x0002,
PSP_MODULE_SINGLE_START = 0x0004,
PSP_MODULE_KERNEL = 0x1000,
};
But it is known there are other params:
-0x800 (0x0800) for vsh mode. Question: ...so is it possible to OR this with 0x1000 or 0x0000 ???. is this still ORable with 0x000*?
-by looking at modules in kd folder it's possible to see other attributes:
0x5000
0x3000
0x7000
what's the meaning of this?