mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
f1d0386b3c
-added possibility to copy gamecube games from usb to sd card, after copy process game will be started (copy takes 5-10 minutes) (issue 12) -added possibility to install gamecube games to usb fat partitions -fixed game name not displayed in delete game dialog -changed naming scheme of partition name in top-right corner in coverflow, now looks like DML [USB1], name depends on view
16 lines
294 B
C
16 lines
294 B
C
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#ifndef GC_H_
|
|
#define GC_H_
|
|
void set_video_mode(int i);
|
|
void set_language(u8 lang);
|
|
void DML_RemoveGame(const char *discid, const char* partition);
|
|
bool DML_GameIsInstalled(char *discid, const char* partition);
|
|
#endif //GC_H_
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |