mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-08 12:35:08 +01:00
7bccfd2b17
*Removed the console loading screen (no more console at all) *Complete rework of device handle. You need to reset all your custom paths for this rev. *Support for writing images/settings/... on any writable partition (FAT/NTFS/EXT). (Theoretically you can run the loader from NTFS only without the need of any other partition or SD if run from new forwarder channel, for example) *Support for Primary/Logical partitions and GUID Partition Table (GPT) Forwarder Channel in last revision was not using IOS58 (not sure about AHBPROT) Here a corrected version (thx to Cyan): http://www.mediafire.com/?a9y3ywqcm4v3lz3
29 lines
1.1 KiB
C
29 lines
1.1 KiB
C
/****************************************************************************
|
|
* PromptWindows
|
|
* USB Loader GX 2009
|
|
*
|
|
* PromptWindows.h
|
|
***************************************************************************/
|
|
|
|
#ifndef _PROMPTWINDOWS_H_
|
|
#define _PROMPTWINDOWS_H_
|
|
|
|
#include "libwiigui/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);
|
|
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);
|
|
int HBCWindowPrompt(const char *name, const char *coder, const char *version, const char *release_date,
|
|
const char *long_description, GuiImageData * iconImgData, u64 filesize);
|
|
|
|
#endif
|