mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
c6fdedb008
*Added DefaultSettings Button and a DefaultGameSettings Button. *Fixed OGG Menu to not codedump on path change and auto add '/' if not entered like on paths *Some small fixes
23 lines
462 B
C
23 lines
462 B
C
/****************************************************************************
|
|
* libwiigui Template
|
|
* Tantric 2009
|
|
*
|
|
* demo.h
|
|
***************************************************************************/
|
|
|
|
#ifndef _MAIN_H_
|
|
#define _MAIN_H_
|
|
|
|
#include "FreeTypeGX.h"
|
|
|
|
extern struct SSettings Settings;
|
|
|
|
void ExitApp();
|
|
void DefaultSettings();
|
|
extern int ExitRequested;
|
|
extern FreeTypeGX *fontSystem;
|
|
extern bool netcheck;
|
|
extern int Net_Init(char *ip);
|
|
|
|
#endif
|