Mercurial > sdl-ios-xcode
comparison src/video/ataricommon/SDL_ikbdinterrupt_s.h @ 1662:782fd950bd46 SDL-1.3
Revamp of the video system in progress - adding support for multiple displays, multiple windows, and a full video mode selection API.
WARNING: None of the video drivers have been updated for the new API yet! The API is still under design and very fluid.
The code is now run through a consistent indent format:
indent -i4 -nut -nsc -br -ce
The headers are being converted to automatically generate doxygen documentation.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 28 May 2006 13:04:16 +0000 |
parents | 14717b52abc0 |
children | 4da1ee79c9af |
comparison
equal
deleted
inserted
replaced
1661:281d3f4870e5 | 1662:782fd950bd46 |
---|---|
42 #define IKBD_JOY_RIGHT (1<<3) | 42 #define IKBD_JOY_RIGHT (1<<3) |
43 #define IKBD_JOY_FIRE (1<<7) | 43 #define IKBD_JOY_FIRE (1<<7) |
44 | 44 |
45 /* Variables */ | 45 /* Variables */ |
46 | 46 |
47 extern volatile Uint8 SDL_AtariIkbd_keyboard[128]; /* Keyboard table */ | 47 extern volatile Uint8 SDL_AtariIkbd_keyboard[128]; /* Keyboard table */ |
48 extern volatile Uint16 SDL_AtariIkbd_mouseb; /* Mouse on port 0, buttons */ | 48 extern volatile Uint16 SDL_AtariIkbd_mouseb; /* Mouse on port 0, buttons */ |
49 extern volatile Sint16 SDL_AtariIkbd_mousex; /* Mouse X relative motion */ | 49 extern volatile Sint16 SDL_AtariIkbd_mousex; /* Mouse X relative motion */ |
50 extern volatile Sint16 SDL_AtariIkbd_mousey; /* Mouse Y relative motion */ | 50 extern volatile Sint16 SDL_AtariIkbd_mousey; /* Mouse Y relative motion */ |
51 extern volatile Uint16 SDL_AtariIkbd_joystick; /* Joystick on port 1 */ | 51 extern volatile Uint16 SDL_AtariIkbd_joystick; /* Joystick on port 1 */ |
52 | 52 |
53 /* For joystick driver to know if this is usable */ | 53 /* For joystick driver to know if this is usable */ |
54 extern Uint16 SDL_AtariIkbd_enabled; | 54 extern Uint16 SDL_AtariIkbd_enabled; |
55 | |
56 /* Functions */ | |
57 | 55 |
58 extern void SDL_AtariIkbdInstall(void); | 56 /* Functions */ |
59 extern void SDL_AtariIkbdUninstall(void); | 57 |
58 extern void SDL_AtariIkbdInstall (void); | |
59 extern void SDL_AtariIkbdUninstall (void); | |
60 | 60 |
61 #endif /* _SDL_IKBDINTERRUPT_S_H_ */ | 61 #endif /* _SDL_IKBDINTERRUPT_S_H_ */ |
62 /* vi: set ts=4 sw=4 expandtab: */ |