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>
|
|
|
|
|
|
|
|
#include "ogc_input.h"
|
|
|
|
#include "ogc_audio.h"
|
|
|
|
#include "ogc_video.h"
|
|
|
|
#include "config.h"
|
2008-12-10 19:16:30 +01:00
|
|
|
|
2008-08-07 14:26:07 +02:00
|
|
|
#define update_input() ogc_input__update()
|
|
|
|
|
2008-12-11 18:38:29 +01:00
|
|
|
#define DEFAULT_PATH "/genplus"
|
|
|
|
|
2008-08-07 14:26:07 +02:00
|
|
|
/* globals */
|
|
|
|
extern u32 diff_usec(long long start,long long end);
|
|
|
|
extern long long gettime();
|
|
|
|
extern void error(char *format, ...);
|
|
|
|
extern int getcompany();
|
|
|
|
extern void reloadrom();
|
|
|
|
extern void ClearGGCodes();
|
|
|
|
extern void GetGGEntries();
|
|
|
|
extern void legal();
|
|
|
|
extern void MainMenu();
|
|
|
|
extern void set_region();
|
|
|
|
extern int ManageSRAM(u8 direction, u8 device);
|
|
|
|
extern int ManageState(u8 direction, u8 device);
|
|
|
|
extern void memfile_autosave();
|
|
|
|
extern void memfile_autoload();
|
|
|
|
|
|
|
|
extern int peripherals;
|
|
|
|
extern int frameticker;
|
|
|
|
extern int FramesPerSecond;
|
2008-12-07 20:31:50 +01:00
|
|
|
extern int Shutdown;
|
2008-12-12 16:38:04 +01:00
|
|
|
extern bool fat_enabled;
|
2008-08-07 14:26:07 +02:00
|
|
|
|
|
|
|
#endif /* _OSD_H_ */
|