2009-07-05 22:22:29 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* 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);
|
2009-07-29 22:32:14 +02:00
|
|
|
void ShowProgress (const char *title, const char *msg1, char *dynmsg2,
|
2009-07-30 07:41:12 +02:00
|
|
|
f32 done, f32 total, bool swSize = false, bool swTime = false);
|
2009-07-05 22:22:29 +02:00
|
|
|
void ProgressStop();
|
|
|
|
|
|
|
|
#endif
|