mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-08 12:30:39 +01:00
Add energy saving header.
This commit is contained in:
parent
47c3d4d7cd
commit
c1c30a5c73
39
include/coreinit/energysaver.h
Normal file
39
include/coreinit/energysaver.h
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
#pragma once
|
||||||
|
#include <wut.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \defgroup coreinit_energysaver Energy saver
|
||||||
|
* \ingroup coreinit
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
int32_t
|
||||||
|
IMEnableDim(void);
|
||||||
|
|
||||||
|
int32_t
|
||||||
|
IMDisableDim(void);
|
||||||
|
|
||||||
|
int32_t
|
||||||
|
IMIsDimEnabled(int32_t * result);
|
||||||
|
|
||||||
|
int32_t
|
||||||
|
IMEnableAPD(void);
|
||||||
|
|
||||||
|
int32_t
|
||||||
|
IMDisableAPD(void);
|
||||||
|
|
||||||
|
int32_t
|
||||||
|
IMIsAPDEnabled(int32_t * result);
|
||||||
|
|
||||||
|
int32_t
|
||||||
|
IMIsAPDEnabledBySysSettings(int32_t * result);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/** @} */
|
Loading…
Reference in New Issue
Block a user