mirror of
https://github.com/ApfelTeeSaft/ps4-fortniteserver.git
synced 2026-08-26 19:33:25 +00:00
843 B
843 B
Sysmodule library
The sysmodule library is used for loading and unloading system modules tied to static identifiers. For a list of these identifiers, see the psdevwiki page.
Known Functions
sceSysmoduleIsLoaded(id)
int sceSysmoduleIsLoaded(uint16_t id)
Checks if the given id is already loaded. Returns 0 if this is the case, non-zero otherwise.
sceSysmoduleLoadModule(id)
int sceSysmoduleLoadModule(uint16_t id)
Attempts to load the module at id. Returns 0 if it could be loaded, non-zero on failure.
sceSysmoduleUnloadModule(id)
int sceSysmoduleUnloadModule(uint16_t id)
Attempts to unload the module at id. Returns 0 if it could be unloaded, non-zero on failure.
Reversing Credits
- CTurt
- VitaSDK developers