2009-09-30 19:10:58 -04:00
|
|
|
/****************************************************************************
|
|
|
|
* PromptWindows
|
|
|
|
* USB Loader GX 2009
|
|
|
|
*
|
|
|
|
* PromptWindows.h
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _PROMPTWINDOWS_H_
|
|
|
|
#define _PROMPTWINDOWS_H_
|
|
|
|
|
2010-11-14 12:19:42 -03:00
|
|
|
#include "libwiigui/gui.h"
|
2009-09-30 19:10:58 -04:00
|
|
|
|
2010-09-23 20:48:03 -04:00
|
|
|
int WindowPrompt(const char *title, const char *msg = NULL, const char * btn1Label = NULL, const char * btn2Label =
|
|
|
|
NULL, const char * btn3Label = NULL, const char * btn4Label = NULL, int wait = -1);
|
2009-09-30 19:10:58 -04:00
|
|
|
|
|
|
|
void WindowCredits();
|
2010-09-23 20:48:03 -04:00
|
|
|
int OnScreenKeyboard(char * var, u32 maxlen, int min);
|
|
|
|
int OnScreenNumpad(char * var, u32 maxlen);
|
2009-12-02 22:06:09 -03:00
|
|
|
int WindowExitPrompt();
|
2010-09-23 20:48:03 -04:00
|
|
|
int DiscWait(const char *title, const char *msg, const char *btn1Label, const char *btn2Label, int IsDeviceWait);
|
2010-12-30 20:49:22 -03:00
|
|
|
int FormatingPartition(const char *title, int part_num);
|
2009-09-30 19:10:58 -04:00
|
|
|
bool NetworkInitPrompt();
|
|
|
|
int WindowScreensaver();
|
2010-09-23 20:48:03 -04:00
|
|
|
int CodeDownload(const char *id);
|
|
|
|
int HBCWindowPrompt(const char *name, const char *coder, const char *version, const char *release_date,
|
2010-11-14 12:19:42 -03:00
|
|
|
const char *long_description, GuiImageData * iconImgData, u64 filesize);
|
2009-09-30 19:10:58 -04:00
|
|
|
|
|
|
|
#endif
|