2008-08-07 14:43:17 +02:00
|
|
|
|
|
|
|
#ifndef _OSD_H_
|
|
|
|
#define _OSD_H_
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <conio.h>
|
|
|
|
|
2008-08-21 22:34:00 +02:00
|
|
|
#include <SDL.h>
|
2008-08-07 14:43:17 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "shared.h"
|
|
|
|
#include "main.h"
|
2008-08-21 22:34:00 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "error.h"
|
2008-08-07 14:43:17 +02:00
|
|
|
#include "unzip.h"
|
|
|
|
#include "fileio.h"
|
|
|
|
|
2009-08-06 20:31:05 +02:00
|
|
|
#define GG_ROM "./ggenie.bin"
|
|
|
|
#define AR_ROM "./areplay.bin"
|
|
|
|
#define OS_ROM "./bios.bin"
|
|
|
|
#define SK_ROM "./sk.bin"
|
|
|
|
#define SK_UPMEM "./sk2chip.bin"
|
|
|
|
|
2008-08-07 14:43:17 +02:00
|
|
|
#endif /* _OSD_H_ */
|