mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
6e8489e335
- Type "make" to make the normal dol - Type "make channel" to make the channel dol This will only force networkops.cpp and PromptWindows.cpp to recompile, instead of changing the PromptWindows.h file and force a recompile on almost everything.
36 lines
1.4 KiB
C
36 lines
1.4 KiB
C
/****************************************************************************
|
|
* PromptWindows
|
|
* USB Loader GX 2009
|
|
*
|
|
* PromptWindows.h
|
|
***************************************************************************/
|
|
|
|
#ifndef _PROMPTWINDOWS_H_
|
|
#define _PROMPTWINDOWS_H_
|
|
|
|
#include "usbloader/partition_usbloader.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);
|
|
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);
|
|
bool SearchMissingImages(int choice2);
|
|
int ProgressDownloadWindow(int choice2);
|
|
int ProgressUpdateWindow();
|
|
bool NetworkInitPrompt();
|
|
char * GetMissingFiles();
|
|
int WindowScreensaver();
|
|
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);
|
|
|
|
|
|
#endif
|