2008-08-07 14:26:07 +02:00
|
|
|
|
|
|
|
#ifndef _OSD_H_
|
|
|
|
#define _OSD_H_
|
|
|
|
|
|
|
|
#define NGC 1
|
|
|
|
|
|
|
|
#include <gccore.h>
|
|
|
|
#include <ogcsys.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <sys/dir.h>
|
|
|
|
|
2009-05-13 16:26:55 +02:00
|
|
|
#include <asndlib.h>
|
|
|
|
#include <oggplayer.h>
|
|
|
|
|
2009-04-15 17:33:51 +02:00
|
|
|
#ifdef HW_RVL
|
|
|
|
#include <di/di.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "gx_input.h"
|
|
|
|
#include "gx_audio.h"
|
|
|
|
#include "gx_video.h"
|
2008-08-07 14:26:07 +02:00
|
|
|
#include "config.h"
|
2009-05-13 16:26:55 +02:00
|
|
|
#include "file_mem.h"
|
2008-12-10 19:16:30 +01:00
|
|
|
|
2008-12-11 18:38:29 +01:00
|
|
|
#define DEFAULT_PATH "/genplus"
|
2009-04-23 03:01:07 +02:00
|
|
|
#ifdef HW_RVL
|
2009-05-25 19:07:34 +02:00
|
|
|
#define VERSION "version 1.3.2W"
|
2009-04-23 03:01:07 +02:00
|
|
|
#else
|
2009-05-25 19:07:34 +02:00
|
|
|
#define VERSION "version 1.3.2G"
|
2009-04-23 03:01:07 +02:00
|
|
|
#endif
|
2008-12-11 18:38:29 +01:00
|
|
|
|
2008-08-07 14:26:07 +02:00
|
|
|
/* globals */
|
|
|
|
extern void error(char *format, ...);
|
|
|
|
extern void ClearGGCodes();
|
|
|
|
extern void GetGGEntries();
|
2009-05-13 16:26:55 +02:00
|
|
|
extern void MainMenu(void);
|
2008-08-07 14:26:07 +02:00
|
|
|
extern void legal();
|
2009-04-20 00:31:08 +02:00
|
|
|
extern void reloadrom (int size, char *name);
|
|
|
|
extern void shutdown();
|
2009-01-14 17:32:35 +01:00
|
|
|
extern u32 frameticker;
|
2009-03-29 20:56:36 +02:00
|
|
|
extern u8 Shutdown;
|
|
|
|
|
2008-08-07 14:26:07 +02:00
|
|
|
#endif /* _OSD_H_ */
|