SysCheck-ModMii-Edition/include/video.h

18 lines
354 B
C
Raw Normal View History

2013-10-12 20:38:34 +02:00
#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