diff options
author | CelesteBlue-dev | 2018-03-10 02:24:11 +0100 |
---|---|---|
committer | GitHub | 2018-03-10 02:24:11 +0100 |
commit | 4f442909a804ddc29a4b4c939e5bd8d33af83ca6 (patch) | |
tree | 2adba15c95aa2aca5ff420aec261a918a8bffc7b /include/kernel/syscon.h | |
parent | Add ksceSysconSetAlarmCallback to db.yml (diff) | |
download | vds-libraries-4f442909a804ddc29a4b4c939e5bd8d33af83ca6.tar.gz |
Add ksceSysconSetAlarmCallback to syscon.h
Diffstat (limited to '')
-rw-r--r-- | include/kernel/syscon.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/kernel/syscon.h b/include/kernel/syscon.h index 225f798..67a64bb 100644 --- a/include/kernel/syscon.h +++ b/include/kernel/syscon.h @@ -200,6 +200,16 @@ int sceSysconLoadConfigstorageScript(unsigned short, const void *buff, unsigned int sceSysconVerifyConfigstorageScript(unsigned short, const void *buff, unsigned int size); /** + * Set the alarm callback, that will be ran when the alarm timer is passed. + * + * @param callback The callback function. + * @param argp The second argument that will be passed to the callback. + * + * @return 0. + */ +int sceSysconSetAlarmCallback(SceSysconCallback callback, void *argp); + +/** * Set the low battery callback, that will be ran when the battery is low. * * @param callback The callback function. |