mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-22 19:29:18 +01:00
1b9a56b877
*Added URL_List class that gets all Links of an http url. *Made HomebrewList class dynamic allocated like the URL_List class too now. This saves lots of unused memory. *Small cleanups NOTE: Punes made an update too (i didnt know he was doing it). We decided to have both in because of: Punes update updates only the files that are available on the SD/USB and only when you are doing a complete update. My update is downloading ALL files from the SVN Link (getting the whole list). These is mainly for people that are getting started or those who want to update the whole LanguageList
23 lines
695 B
C
23 lines
695 B
C
/****************************************************************************
|
|
* ProgressWindow
|
|
* USB Loader GX 2009
|
|
*
|
|
* ProgressWindow.h
|
|
***************************************************************************/
|
|
|
|
#ifndef _PROGRESSWINDOW_H_
|
|
#define _PROGRESSWINDOW_H_
|
|
|
|
#define KBSIZE 1024.0
|
|
#define MBSIZE 1048576.0
|
|
#define GBSIZE 1073741824.0
|
|
|
|
void InitProgressThread();
|
|
void ExitProgressThread();
|
|
void SetupGameInstallProgress(char * titl, char * game);
|
|
void ShowProgress (const char *title, const char *msg1, char *dynmsg2,
|
|
f32 done, f32 total, bool swSize = false, bool swTime = false);
|
|
void ProgressStop();
|
|
|
|
#endif
|