2009-06-05 00:13:39 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* PromptWindows
|
|
|
|
* USB Loader GX 2009
|
|
|
|
*
|
|
|
|
* PromptWindows.h
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _PROMPTWINDOWS_H_
|
|
|
|
#define _PROMPTWINDOWS_H_
|
|
|
|
|
2009-06-13 02:24:36 +02:00
|
|
|
#include "usbloader/partition.h"
|
2009-06-05 00:13:39 +02:00
|
|
|
|
|
|
|
void WindowCredits();
|
|
|
|
int OnScreenKeyboard(char * var, u32 maxlen, int min);
|
|
|
|
int WindowPrompt(const char *title, const char *msg, const char *btn1Label, const char *btn2Label, const char *btn3Label, const char *btn4Label);
|
|
|
|
int WindowExitPrompt(const char *title, const char *msg, const char *btn1Label, const char *btn2Label, const char *btn3Label, const char *btn4Label);
|
|
|
|
int GameWindowPrompt();
|
|
|
|
int DiscWait(const char *title, const char *msg, const char *btn1Label, const char *btn2Label, int IsDeviceWait);
|
|
|
|
int FormatingPartition(const char *title, partitionEntry *entry);
|
2009-06-13 23:10:37 +02:00
|
|
|
void SearchMissingImages(int choice2);
|
2009-06-05 00:13:39 +02:00
|
|
|
int ProgressWindow(const char *title, const char *msg);
|
|
|
|
int ProgressDownloadWindow(int choice2);
|
|
|
|
int ProgressUpdateWindow();
|
2009-06-06 19:26:52 +02:00
|
|
|
char * GetMissingFiles();
|
2009-06-05 00:13:39 +02:00
|
|
|
|
|
|
|
#endif
|