diff options
-rw-r--r-- | include/user/power.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/user/power.h b/include/user/power.h index 55a5543..c05bd92 100644 --- a/include/user/power.h +++ b/include/user/power.h @@ -227,6 +227,22 @@ int scePowerSetGpuClockFrequency(int freq); */ int scePowerSetGpuXbarClockFrequency(int freq); +/** + * Sets wireless features usage + * + * @param enabled - SCE_TRUE to enable, SCE_FALSE to disable + * + * @return 0 on success, < 0 on error + */ +int scePowerSetUsingWireless(SceBool enabled); + +/** + * Gets wireless features usage + * + * @return SCE_TRUE if enabled, SCE_FALSE otherwise + */ +int scePowerGetUsingWireless(void); + #ifdef __cplusplus } #endif |