Add energy saving header.

This commit is contained in:
Maschell 2018-06-17 19:31:46 +02:00 committed by James Benton
parent 47c3d4d7cd
commit c1c30a5c73

View 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
/** @} */