summaryrefslogtreecommitdiff
path: root/include/user/sysmodule.h
diff options
context:
space:
mode:
authorSunguk Lee2016-11-30 04:27:03 +0900
committerGitHub2016-11-30 04:27:03 +0900
commit7d1e7b34539a7b232090974866fa9be3b122d3d0 (patch)
tree3bfb6278006b303dcde60ca8472c9c398223409e /include/user/sysmodule.h
parentMerge pull request #103 from vitasdk/SceBtForDriver_nids (diff)
parentRename argument of scePromoterUtilityDeletePkg (diff)
downloadvds-libraries-7d1e7b34539a7b232090974866fa9be3b122d3d0.tar.gz
Merge pull request #101 from vitasdk/add-promoterutils
Add package installing functions
Diffstat (limited to 'include/user/sysmodule.h')
-rw-r--r--include/user/sysmodule.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/user/sysmodule.h b/include/user/sysmodule.h
index 9961b71..8cc2a37 100644
--- a/include/user/sysmodule.h
+++ b/include/user/sysmodule.h
@@ -74,9 +74,19 @@ enum {
SCE_SYSMODULE_AVPLAYER = 0x004c
};
+/* internal module IDs */
+enum {
+ SCE_SYSMODULE_PAF = 0x80000008,
+ SCE_SYSMODULE_PROMOTER_UTIL = 0x80000024
+};
+
int sceSysmoduleLoadModule(SceUInt16 id);
int sceSysmoduleUnloadModule(SceUInt16 id);
int sceSysmoduleIsLoaded(SceUInt16 id);
+int sceSysmoduleLoadModuleInternal(SceUInt32 id);
+int sceSysmoduleUnloadModuleInternal(SceUInt32 id);
+int sceSysmoduleIsLoadedInternal(SceUInt32 id);
+int sceSysmoduleLoadModuleInternalWithArg(SceUInt32 id, SceSize args, void *argp, void *unk);
#ifdef __cplusplus
}