diff options
-rw-r--r-- | include/user/power.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/user/power.h b/include/user/power.h index 7f9dd04..75f1673 100644 --- a/include/user/power.h +++ b/include/user/power.h @@ -127,6 +127,27 @@ int scePowerGetGpuClockFrequency(void); int scePowerGetGpuXbarClockFrequency(void); /** + * Requests PS Vita to do a cold reset + * + * @return always 0 + */ +int scePowerRequestColdReset(void); + +/** + * Requests PS Vita to go into standby + * + * @return always 0 + */ +int scePowerRequestStandby(void); + +/** + * Requests PS Vita to suspend + * + * @return always 0 + */ +int scePowerRequestSuspend(void); + +/** * Sets CPU clock frequency * * @param freq - Frequency to set in Mhz |