2009-10-01 01:10:58 +02:00
|
|
|
#ifndef _CFG_H_
|
|
|
|
#define _CFG_H_
|
|
|
|
|
|
|
|
#include <gctypes.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2010-09-19 01:16:05 +02:00
|
|
|
extern "C"
|
|
|
|
{
|
2009-10-01 01:10:58 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "usbloader/disc.h"
|
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
char *get_title(struct discHdr *header);
|
|
|
|
char *cfg_get_title(u8 *id);
|
|
|
|
void title_set(char *id, char *title);
|
2010-09-19 01:16:05 +02:00
|
|
|
void titles_default();
|
2010-09-24 02:48:03 +02:00
|
|
|
u8 get_block(struct discHdr *header);
|
|
|
|
s8 get_pegi_block(struct discHdr *header);
|
2010-09-19 01:16:05 +02:00
|
|
|
|
2010-09-24 02:48:03 +02:00
|
|
|
void CFG_Cleanup(void);
|
2009-10-01 01:10:58 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|