diff options
author | CelesteBlue-dev | 2018-08-21 00:14:15 +0200 |
---|---|---|
committer | devnoname120 | 2018-08-21 00:14:15 +0200 |
commit | 645df2b043ca978b430e292e094291b3e4b3cbf4 (patch) | |
tree | 6ba458165de1c5a87283681437996e06276d1592 /include/kernel/power.h | |
parent | Added more ScePaf NIDs (diff) | |
download | vds-libraries-645df2b043ca978b430e292e094291b3e4b3cbf4.tar.gz |
Add ScePower configuration modes (#345)
Diffstat (limited to '')
-rw-r--r-- | include/kernel/power.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/kernel/power.h b/include/kernel/power.h index dd9ad88..f7fee25 100644 --- a/include/kernel/power.h +++ b/include/kernel/power.h @@ -20,9 +20,11 @@ typedef enum ScePowerCallbackType { SCE_POWER_CB_RESUMING = 0x00020000, /** indicates the unit is suspending, seems to occur due to inactivity */ SCE_POWER_CB_SUSPENDING = 0x00010000, - /**indicates the unit is plugged into an AC outlet*/ + /** indicates the unit is plugged into an AC outlet */ SCE_POWER_CB_AC_POWER = 0x00001000, - /**indicates there is a battery present in the unit**/ + /** indicates the battery is in low state **/ + SCE_POWER_CB_LOWBATTERY = 0x00000100, + /** indicates there is a battery present in the unit **/ SCE_POWER_CB_BATTERY_EXIST = 0x00000080 } ScePowerCallbackType; |