2009-10-01 01:10:58 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* PromptWindows
|
|
|
|
* USB Loader GX 2009
|
|
|
|
*
|
|
|
|
* PromptWindows.h
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _PROMPTWINDOWS_H_
|
|
|
|
#define _PROMPTWINDOWS_H_
|
|
|
|
|
2011-06-14 19:53:19 +02:00
|
|
|
#include "GUI/gui.h"
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
int WindowPrompt(const char *title, const char *msg = NULL, const char * btn1Label = NULL, const char * btn2Label =
|
2011-07-26 00:28:22 +02:00
|
|
|
NULL, const char * btn3Label = NULL, const char * btn4Label = NULL, int wait = -1);
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
void WindowCredits();
|
2011-09-10 22:08:12 +02:00
|
|
|
int OnScreenKeyboard(char * var, u32 maxlen, int min, bool hide = false);
|
2010-09-24 02:48:03 +02:00
|
|
|
int OnScreenNumpad(char * var, u32 maxlen);
|
2009-12-03 02:06:09 +01:00
|
|
|
int WindowExitPrompt();
|
2010-09-24 02:48:03 +02:00
|
|
|
int DiscWait(const char *title, const char *msg, const char *btn1Label, const char *btn2Label, int IsDeviceWait);
|
2010-12-31 00:49:22 +01:00
|
|
|
int FormatingPartition(const char *title, int part_num);
|
2009-10-01 01:10:58 +02:00
|
|
|
bool NetworkInitPrompt();
|
|
|
|
int WindowScreensaver();
|
2010-09-24 02:48:03 +02:00
|
|
|
int CodeDownload(const char *id);
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
#endif
|