mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 09:19:17 +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
27 lines
532 B
C++
27 lines
532 B
C++
#ifndef STARTUPPROCESS_H_
|
|
#define STARTUPPROCESS_H_
|
|
|
|
#include "libwiigui/gui.h"
|
|
|
|
class StartUpProcess
|
|
{
|
|
public:
|
|
static bool Run();
|
|
private:
|
|
StartUpProcess();
|
|
~StartUpProcess();
|
|
bool Execute();
|
|
bool USBSpinUp();
|
|
void TextFade(int direction);
|
|
void SetTextf(const char * format, ...);
|
|
void Draw();
|
|
|
|
GuiImageData * GXImageData;
|
|
GuiImage * background;
|
|
GuiImage * GXImage;
|
|
GuiText * titleTxt;
|
|
GuiText * messageTxt;
|
|
};
|
|
|
|
#endif
|