mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-07 10:58:13 +01:00
coreinit: Add remaining IM* functions.
This commit is contained in:
parent
9dfb7d5344
commit
9cc6aead84
@ -11,26 +11,52 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
int32_t
|
||||
IMEnableDim(void);
|
||||
typedef int32_t IMError;
|
||||
|
||||
int32_t
|
||||
IMDisableDim(void);
|
||||
IMError
|
||||
IMDisableAPD();
|
||||
|
||||
int32_t
|
||||
IMIsDimEnabled(int32_t * result);
|
||||
IMError
|
||||
IMDisableDim();
|
||||
|
||||
int32_t
|
||||
IMEnableAPD(void);
|
||||
IMError
|
||||
IMEnableAPD();
|
||||
|
||||
int32_t
|
||||
IMDisableAPD(void);
|
||||
IMError
|
||||
IMEnableDim();
|
||||
|
||||
int32_t
|
||||
IMIsAPDEnabled(int32_t * result);
|
||||
IMError
|
||||
IMIsAPDEnabled(uint32_t *outValue);
|
||||
|
||||
int32_t
|
||||
IMIsAPDEnabledBySysSettings(int32_t * result);
|
||||
IMError
|
||||
IMIsAPDEnabledBySysSettings(uint32_t *outValue);
|
||||
|
||||
IMError
|
||||
IMIsDimEnabled(uint32_t *outValue);
|
||||
|
||||
IMError
|
||||
IMGetDimEnableDrc(uint32_t *outValue);
|
||||
|
||||
IMError
|
||||
IMGetDimEnableTv(uint32_t *outValue);
|
||||
|
||||
IMError
|
||||
IMGetDimPeriod(uint32_t *outValue);
|
||||
|
||||
IMError
|
||||
IMGetTimeBeforeAPD(uint32_t *outSeconds);
|
||||
|
||||
IMError
|
||||
IMGetTimeBeforeDimming(uint32_t *outSeconds);
|
||||
|
||||
IMError
|
||||
IMSetDimEnableDrc(BOOL value);
|
||||
|
||||
IMError
|
||||
IMSetDimEnableTv(BOOL value);
|
||||
|
||||
IMError
|
||||
IMStartAPDVideoMode();
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user