mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 17:29:17 +01:00
32144f46f9
*Lots of small fixes *Added Error002fix selection in GameSettings **NOTE 1: You might want to delete your Configfiles before using this new Rev. **NOTE 2: Known issue with Settings is that WiiMotePointer is sometimes being displaced. I am searching for the reason right now.
27 lines
1.1 KiB
C
27 lines
1.1 KiB
C
/****************************************************************************
|
|
* PromptWindows
|
|
* USB Loader GX 2009
|
|
*
|
|
* PromptWindows.h
|
|
***************************************************************************/
|
|
|
|
#ifndef _PROMPTWINDOWS_H_
|
|
#define _PROMPTWINDOWS_H_
|
|
|
|
#include "partition.h"
|
|
|
|
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);
|
|
int NetworkInitPromp(int choice2);
|
|
int ProgressWindow(const char *title, const char *msg);
|
|
int ProgressDownloadWindow(int choice2);
|
|
int ProgressUpdateWindow();
|
|
char * GetMissingFiles();
|
|
|
|
#endif
|