homebrewfilter/installer/source/video.h
Christopher Roy Bratusek c271b85907 added HBF-Installer to GIT
2011-10-15 17:31:29 +02:00

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