5275
|
1 /*
|
|
2 SDL - Simple DirectMedia Layer
|
|
3 Copyright (C) 1997-2010 Sam Lantinga
|
|
4
|
|
5 This library is free software; you can redistribute it and/or
|
|
6 modify it under the terms of the GNU Lesser General Public
|
|
7 License as published by the Free Software Foundation; either
|
|
8 version 2.1 of the License, or (at your option) any later version.
|
|
9
|
|
10 This library is distributed in the hope that it will be useful,
|
|
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
13 Lesser General Public License for more details.
|
|
14
|
|
15 You should have received a copy of the GNU Lesser General Public
|
|
16 License along with this library; if not, write to the Free Software Founation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
17
|
|
18 Sam Lantinga
|
|
19 slouken@libsdl.org
|
|
20 */
|
|
21
|
|
22 #include "SDL_config.h"
|
|
23
|
|
24 /* No supported under the NDS because of math operations. */
|
|
25
|
|
26 #include "SDL_events.h"
|
|
27 #include "SDL_events_c.h"
|
|
28 #include "SDL_gesture_c.h"
|
|
29
|
|
30 int SDL_GestureAddTouch(SDL_Touch* touch)
|
|
31 {
|
|
32 return 0;
|
|
33 }
|
|
34
|
|
35 void SDL_GestureProcessEvent(SDL_Event* event)
|
|
36 {
|
|
37 return;
|
|
38 }
|
|
39
|
|
40 /* vi: set ts=4 sw=4 expandtab: */
|
|
41
|