mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-05 10:25:07 +01:00
22 lines
328 B
C
22 lines
328 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 "shared.h"
|
|
#include "main.h"
|
|
#include "config.h"
|
|
#include "error.h"
|
|
#include "unzip.h"
|
|
#include "fileio.h"
|
|
|
|
#endif /* _OSD_H_ */
|