Mercurial > sdl-ios-xcode
comparison src/video/bwindow/SDL_sysevents.cc @ 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 | 376665398b25 |
children | 4da1ee79c9af |
comparison
equal
deleted
inserted
replaced
1661:281d3f4870e5 | 1662:782fd950bd46 |
---|---|
27 #include "SDL_error.h" | 27 #include "SDL_error.h" |
28 #include "SDL_events.h" | 28 #include "SDL_events.h" |
29 #include "SDL_BWin.h" | 29 #include "SDL_BWin.h" |
30 #include "SDL_lowvideo.h" | 30 #include "SDL_lowvideo.h" |
31 | 31 |
32 extern "C" { | 32 extern "C" |
33 { | |
33 | 34 |
34 #include "../../events/SDL_sysevents.h" | 35 #include "../../events/SDL_sysevents.h" |
35 #include "../../events/SDL_events_c.h" | 36 #include "../../events/SDL_events_c.h" |
36 #include "SDL_sysevents_c.h" | 37 #include "SDL_sysevents_c.h" |
37 | 38 |
38 void BE_PumpEvents(_THIS) | 39 void BE_PumpEvents (_THIS) |
39 { | 40 { |
40 } | 41 } |
41 | 42 |
42 void BE_InitOSKeymap(_THIS) | 43 void BE_InitOSKeymap (_THIS) |
43 { | 44 { |
44 } | 45 } |
45 | 46 |
46 }; /* Extern C */ | 47 }; /* Extern C */ |
48 | |
49 /* vi: set ts=4 sw=4 expandtab: */ |