mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-01 23:25:09 +01:00
25 lines
386 B
C
25 lines
386 B
C
#ifndef _VIDEO_H_
|
|
#define _VIDEO_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Prototypes */
|
|
void Con_Init(u32, u32, u32, u32);
|
|
void Con_Clear(void);
|
|
void Con_ClearLine(void);
|
|
void Con_FgColor(u32, u8);
|
|
void Con_BgColor(u32, u8);
|
|
void Con_FillRow(u32, u32, u8);
|
|
|
|
void Video_Configure(GXRModeObj *);
|
|
void Video_SetMode(void);
|
|
void Video_Clear(s32);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|