Move TW zip install code to C++ so that it can use the ui->functions. Bring in mincrypt code to fix a crash during signature checking.
13 lines
234 B
C
13 lines
234 B
C
#ifndef _GUI_HEADER
|
|
#define _GUI_HEADER
|
|
|
|
int gui_console_only();
|
|
int gui_init();
|
|
int gui_loadResources();
|
|
int gui_start();
|
|
void gui_print(const char *fmt, ...);
|
|
void gui_print_overwrite(const char *fmt, ...);
|
|
|
|
#endif // _GUI_HEADER
|
|
|