mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 09:19:17 +01:00
fa11a745d6
*Rewrote the whole Settings.cpp into 11 classes. Each settings menu has it's own class now *Reworked the whole sound system. Supported formats AIF/MP3/OGG/BNS/WAV now with no file size limit (streaming). *Changed button click/over sounds to wav from raw pcm *Lot's of bug fixes
20 lines
529 B
C
20 lines
529 B
C
/****************************************************************************
|
|
* DiscBrowser
|
|
* USB Loader GX 2009
|
|
*
|
|
* DiscBrowser.h
|
|
***************************************************************************/
|
|
|
|
#ifndef _DISCBROWSER_H_
|
|
#define _DISCBROWSER_H_
|
|
|
|
#include <gctypes.h>
|
|
#include "usbloader/disc.h"
|
|
|
|
int DiscBrowse(const char * GameID, char * dolname, int dolname_size);
|
|
int autoSelectDol(const char *id, bool force);
|
|
int autoSelectDolMenu(const char *id, bool force);
|
|
u8 DiscMount(struct discHdr * header);
|
|
|
|
#endif
|