2009-10-01 01:10:58 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* PromptWindows
|
|
|
|
* USB Loader GX 2009
|
|
|
|
*
|
|
|
|
* PromptWindows.h
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _PROMPTWINDOWS_H_
|
|
|
|
#define _PROMPTWINDOWS_H_
|
|
|
|
|
2009-11-15 22:30:44 +01:00
|
|
|
#include "usbloader/partition_usbloader.h"
|
2009-10-01 01:10:58 +02:00
|
|
|
|
2010-09-19 01:16:05 +02: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-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
void WindowCredits();
|
2010-09-19 01:16:05 +02:00
|
|
|
int OnScreenKeyboard( char * var, u32 maxlen, int min );
|
|
|
|
int OnScreenNumpad( char * var, u32 maxlen );
|
2009-12-03 02:06:09 +01:00
|
|
|
int WindowExitPrompt();
|
2009-10-01 01:10:58 +02:00
|
|
|
int GameWindowPrompt();
|
2010-09-19 01:16:05 +02:00
|
|
|
int DiscWait( const char *title, const char *msg, const char *btn1Label, const char *btn2Label, int IsDeviceWait );
|
|
|
|
int FormatingPartition( const char *title, partitionEntry *entry );
|
|
|
|
bool SearchMissingImages( int choice2 );
|
|
|
|
int ProgressDownloadWindow( int choice2 );
|
2009-10-01 01:10:58 +02:00
|
|
|
int ProgressUpdateWindow();
|
|
|
|
bool NetworkInitPrompt();
|
|
|
|
char * GetMissingFiles();
|
|
|
|
int WindowScreensaver();
|
2010-09-19 01:16:05 +02:00
|
|
|
int CodeDownload( const char *id );
|
|
|
|
int HBCWindowPrompt( const char *name, const char *coder, const char *version,
|
|
|
|
const char *release_date, const char *long_description,
|
|
|
|
const char *iconPath, u64 filesize );
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|