mirror of
https://github.com/modmii/SysCheck-ModMii-Edition.git
synced 2024-11-16 13:19:22 +01:00
18 lines
354 B
C
18 lines
354 B
C
|
#ifndef _VIDEO_H_
|
||
|
#define _VIDEO_H_
|
||
|
|
||
|
// Wii Light state
|
||
|
#define WIILIGHT_OFF 0
|
||
|
#define WIILIGHT_ON 1
|
||
|
|
||
|
// Prototypes
|
||
|
void InitialiseVideo(void);
|
||
|
void SetConsoleForegroundColor(u8, u8);
|
||
|
void SetConsoleBackgroundColor(u8, u8);
|
||
|
void ClearConsole(int);
|
||
|
void PrintText(char *, bool, bool, bool, int, int);
|
||
|
void WiiLightControl(int);
|
||
|
|
||
|
#endif
|
||
|
|