mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
904fda37d4
* clean up the wild mounts and unmounts (this and the new libfat fix the download-bug) * reorganize shutdowns and reboots use now the functions Sys_Reboot(), Sys_Shutdown(), Sys_ShutdownToIdel(), Sys_ShutdownToStandby() and Sys_BackToLoader() this functions stops the GUI-Thread, Shutdowns the Audio, Video, WPad and unmounts the SD and USB
21 lines
419 B
C
21 lines
419 B
C
/****************************************************************************
|
|
* libwiigui Template
|
|
* Tantric 2009
|
|
*
|
|
* demo.h
|
|
***************************************************************************/
|
|
|
|
#ifndef _MAIN_H_
|
|
#define _MAIN_H_
|
|
|
|
#include "FreeTypeGX.h"
|
|
|
|
extern struct SSettings Settings;
|
|
|
|
void DefaultSettings();
|
|
extern FreeTypeGX *fontSystem;
|
|
extern bool netcheck;
|
|
extern int Net_Init(char *ip);
|
|
|
|
#endif
|