Commit 25dd340b authored by Patrice Mandin's avatar Patrice Mandin

Check defines do not already exist in recent system headers

--HG--
branch : SDL-1.2
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%403060
parent ea1fe254
......@@ -84,6 +84,7 @@ enum {
#define MASTERPREDIV_MILAN 256
/* MFP 68901 interrupt sources */
#ifndef MFP_PARALLEL
enum {
MFP_PARALLEL=0,
MFP_DCD,
......@@ -106,14 +107,17 @@ enum {
MFP_RING,
MFP_MONODETECT
};
#endif
/* Xbtimer() timers */
#ifndef XB_TIMERA
enum {
XB_TIMERA=0,
XB_TIMERB,
XB_TIMERC,
XB_TIMERD
};
#endif
/* Variables */
extern SDL_AudioDevice *SDL_MintAudio_device;
......
......@@ -45,10 +45,12 @@ static unsigned char gemdos_currentkeyboard[ATARIBIOS_MAXKEYS];
static unsigned char gemdos_previouskeyboard[ATARIBIOS_MAXKEYS];
static SDL_bool use_dev_mouse = SDL_FALSE;
#ifndef DEV_BUSY
enum {
DEV_BUSY=0,
DEV_READY
};
#endif
static void UpdateSpecialKeys(int special_keys_state);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment