mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-08 12:35:08 +01:00
0a703894e7
*removed source for wad installation to real nand completely *apply of title rename to cached titles *add listing of 00010004 titles on real nand *add rename of internal used id of all HBC versions to JODI for GameTDB to find it *converted all ogg sounds from 44.1 khz to 48 khz *some source cleanup/movement
37 lines
894 B
C
37 lines
894 B
C
/****************************************************************************
|
|
* ProgressWindow
|
|
* USB Loader GX 2009
|
|
*
|
|
* ProgressWindow.h
|
|
***************************************************************************/
|
|
|
|
#ifndef _PROGRESSWINDOW_H_
|
|
#define _PROGRESSWINDOW_H_
|
|
|
|
#include <gctypes.h>
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define PROGRESS_CANCELED -12345
|
|
|
|
void InitProgressThread();
|
|
void ExitProgressThread();
|
|
void ShowProgress(const char *title, const char *msg1, const char *msg2, s64 done, s64 total, bool swSize = false, bool swTime = false);
|
|
void ShowProgress(const char *msg2, s64 done, s64 total);
|
|
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
void ProgressCancelEnable(bool allowCancel);
|
|
void StartProgress(const char * title, const char * msg1, const char * msg2, bool swSize, bool swTime);
|
|
void ShowProgress(s64 done, s64 total);
|
|
bool ProgressCanceled();
|
|
void ProgressStop();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|