mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-09 21:15:10 +01:00
a0182d0c4c
* ogg decoder added (old oggplayer removed) * mp3 decoder added (mp3's cane use as backgroundsounds) * WAVE decoder added (but only uncompressed WAVE's) * AIFF decoder added (only uncrompressed) * BNS decoder added all soundformats can use as backgroundsounds dimoks GameSound class removed it is replaced with the new GuiSound stuff * Many small fixes and other changes
23 lines
398 B
C
23 lines
398 B
C
/****************************************************************************
|
|
* USB Loader GX Team
|
|
* banner.h
|
|
*
|
|
* Dump opening.bnr thanks to Wiipower
|
|
***************************************************************************/
|
|
|
|
#ifndef BANNER_H
|
|
#define BANNER_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
s32 dump_banner(const u8 *discid,const char * dest);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|