mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-10 04:45:08 +01:00
21 lines
307 B
C
21 lines
307 B
C
|
|
||
|
#ifndef _OSD_H_
|
||
|
#define _OSD_H_
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <stdarg.h>
|
||
|
#include <time.h>
|
||
|
#include <conio.h>
|
||
|
|
||
|
#include "SDL.h"
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#include "error.h"
|
||
|
#include "shared.h"
|
||
|
#include "main.h"
|
||
|
#include "unzip.h"
|
||
|
#include "fileio.h"
|
||
|
|
||
|
#endif /* _OSD_H_ */
|