2009-10-01 01:10:58 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* ProgressWindow
|
|
|
|
* USB Loader GX 2009
|
|
|
|
*
|
|
|
|
* ProgressWindow.h
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _PROGRESSWINDOW_H_
|
|
|
|
#define _PROGRESSWINDOW_H_
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
2010-02-25 13:08:03 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void ProgressCallback(s64 gameinstalldone, s64 gameinstalltotal);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-10-01 01:10:58 +02:00
|
|
|
#endif
|