Mercurial > sdl-ios-xcode
annotate src/video/fbcon-1.3/SDL_fbevents.c @ 3158:30f3b987fec3 gsoc2009_ps3
created env (fbcon-1.3) and added basic files
author | Martin Lowinski <martin@goldtopf.org> |
---|---|
date | Sat, 07 Nov 2009 11:35:19 +0000 |
parents | |
children |
rev | line source |
---|---|
3158
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
1 /* |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
2 SDL - Simple DirectMedia Layer |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
3 Copyright (C) 1997-2009 Sam Lantinga |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
4 |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
5 This library is free software; you can redistribute it and/or |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
6 modify it under the terms of the GNU Lesser General Public |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
7 License as published by the Free Software Foundation; either |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
8 version 2.1 of the License, or (at your option) any later version. |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
9 |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
10 This library is distributed in the hope that it will be useful, |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
11 but WITHOUT ANY WARRANTY; without even the implied warranty of |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
13 Lesser General Public License for more details. |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
14 |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
15 You should have received a copy of the GNU Lesser General Public |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
16 License along with this library; if not, write to the Free Software |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
18 |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
19 Sam Lantinga |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
20 slouken@libsdl.org |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
21 */ |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
22 #include "SDL_config.h" |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
23 |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
24 #include "../../events/SDL_sysevents.h" |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
25 #include "../../events/SDL_events_c.h" |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
26 |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
27 #include "SDL_fbvideo.h" |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
28 #include "SDL_fbevents_c.h" |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
29 |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
30 void |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
31 FB_PumpEvents(_THIS) |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
32 { |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
33 /* do nothing. */ |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
34 } |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
35 |
30f3b987fec3
created env (fbcon-1.3) and added basic files
Martin Lowinski <martin@goldtopf.org>
parents:
diff
changeset
|
36 /* vi: set ts=4 sw=4 expandtab: */ |