mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 19:15:07 +01:00
22 lines
437 B
C
22 lines
437 B
C
|
/****************************************************************************
|
||
|
* libwiigui Template
|
||
|
* Tantric 2009
|
||
|
*
|
||
|
* demo.h
|
||
|
***************************************************************************/
|
||
|
|
||
|
#ifndef _MAIN_H_
|
||
|
#define _MAIN_H_
|
||
|
|
||
|
#include "FreeTypeGX.h"
|
||
|
|
||
|
extern struct SSettings Settings;
|
||
|
|
||
|
void ExitApp();
|
||
|
extern int ExitRequested;
|
||
|
extern FreeTypeGX *fontSystem;
|
||
|
extern bool netcheck;
|
||
|
extern int Net_Init(char *ip);
|
||
|
|
||
|
#endif
|