mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
6718070812
*Added hide of password when entering unlock password. (Issue 1847) *Added Priiloader override on returning to Wii System Menu *Fixed issue with filebrowser not jumping back to first directory entry on directory change.
27 lines
924 B
C
27 lines
924 B
C
/****************************************************************************
|
|
* PromptWindows
|
|
* USB Loader GX 2009
|
|
*
|
|
* PromptWindows.h
|
|
***************************************************************************/
|
|
|
|
#ifndef _PROMPTWINDOWS_H_
|
|
#define _PROMPTWINDOWS_H_
|
|
|
|
#include "GUI/gui.h"
|
|
|
|
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);
|
|
|
|
void WindowCredits();
|
|
int OnScreenKeyboard(char * var, u32 maxlen, int min, bool hide = false);
|
|
int OnScreenNumpad(char * var, u32 maxlen);
|
|
int WindowExitPrompt();
|
|
int DiscWait(const char *title, const char *msg, const char *btn1Label, const char *btn2Label, int IsDeviceWait);
|
|
int FormatingPartition(const char *title, int part_num);
|
|
bool NetworkInitPrompt();
|
|
int WindowScreensaver();
|
|
int CodeDownload(const char *id);
|
|
|
|
#endif
|