mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-15 13:55:15 +01:00
11 lines
171 B
C
11 lines
171 B
C
|
#ifndef _GUI_H_
|
||
|
#define _GUI_H_
|
||
|
|
||
|
/* Prototypes */
|
||
|
void Gui_InitConsole(void);
|
||
|
void Gui_DrawBackground(void);
|
||
|
void Gui_DrawLoading(void);
|
||
|
void Gui_DrawError(void);
|
||
|
|
||
|
#endif
|