author | Jørgen P. Tjernø <jorgen@valvesoftware.com> |
Thu, 25 Apr 2013 18:40:29 -0700 | |
changeset 7114 | 02b2fe147478 |
parent 6950 | 1ddb72193079 |
child 7191 | 75360622e65f |
permissions | -rw-r--r-- |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
1 |
/* |
5535
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5406
diff
changeset
|
2 |
Simple DirectMedia Layer |
6885 | 3 |
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org> |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
4 |
|
5535
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5406
diff
changeset
|
5 |
This software is provided 'as-is', without any express or implied |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5406
diff
changeset
|
6 |
warranty. In no event will the authors be held liable for any damages |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5406
diff
changeset
|
7 |
arising from the use of this software. |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
8 |
|
5535
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5406
diff
changeset
|
9 |
Permission is granted to anyone to use this software for any purpose, |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5406
diff
changeset
|
10 |
including commercial applications, and to alter it and redistribute it |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5406
diff
changeset
|
11 |
freely, subject to the following restrictions: |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
12 |
|
5535
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5406
diff
changeset
|
13 |
1. The origin of this software must not be misrepresented; you must not |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5406
diff
changeset
|
14 |
claim that you wrote the original software. If you use this software |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5406
diff
changeset
|
15 |
in a product, an acknowledgment in the product documentation would be |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5406
diff
changeset
|
16 |
appreciated but is not required. |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5406
diff
changeset
|
17 |
2. Altered source versions must be plainly marked as such, and must not be |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5406
diff
changeset
|
18 |
misrepresented as being the original software. |
96594ac5fd1a
SDL 1.3 is now under the zlib license.
Sam Lantinga <slouken@libsdl.org>
parents:
5406
diff
changeset
|
19 |
3. This notice may not be removed or altered from any source distribution. |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
20 |
*/ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
21 |
#include "SDL_config.h" |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
22 |
|
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
23 |
#ifndef _SDL_mouse_c_h |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
24 |
#define _SDL_mouse_c_h |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
25 |
|
5371
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
26 |
#include "SDL_mouse.h" |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
27 |
|
6950
1ddb72193079
Added a mouse ID to the mouse events, which set to the special value SDL_TOUCH_MOUSEID for mouse events simulated by touch input.
Sam Lantinga <slouken@libsdl.org>
parents:
6885
diff
changeset
|
28 |
typedef Uint32 SDL_MouseID; |
1ddb72193079
Added a mouse ID to the mouse events, which set to the special value SDL_TOUCH_MOUSEID for mouse events simulated by touch input.
Sam Lantinga <slouken@libsdl.org>
parents:
6885
diff
changeset
|
29 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
30 |
struct SDL_Cursor |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
31 |
{ |
5001
77df56570442
Added "mouse" support for the Android touch screen
Sam Lantinga <slouken@libsdl.org>
parents:
4484
diff
changeset
|
32 |
struct SDL_Cursor *next; |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
33 |
void *driverdata; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
34 |
}; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
35 |
|
5371
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
36 |
typedef struct |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
37 |
{ |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
38 |
/* Create a cursor from a surface */ |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
39 |
SDL_Cursor *(*CreateCursor) (SDL_Surface * surface, int hot_x, int hot_y); |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
40 |
|
6675
20f3cdea0fd2
Add SDL_CreateSystemCursor for Windows and Linux.
Michael Sartain <mikesart@valvesoftware.com>
parents:
6673
diff
changeset
|
41 |
/* Create a system cursor */ |
20f3cdea0fd2
Add SDL_CreateSystemCursor for Windows and Linux.
Michael Sartain <mikesart@valvesoftware.com>
parents:
6673
diff
changeset
|
42 |
SDL_Cursor *(*CreateSystemCursor) (SDL_SystemCursor id); |
20f3cdea0fd2
Add SDL_CreateSystemCursor for Windows and Linux.
Michael Sartain <mikesart@valvesoftware.com>
parents:
6673
diff
changeset
|
43 |
|
5371
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
44 |
/* Show the specified cursor, or hide if cursor is NULL */ |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
45 |
int (*ShowCursor) (SDL_Cursor * cursor); |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
46 |
|
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
47 |
/* This is called when a mouse motion event occurs */ |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
48 |
void (*MoveCursor) (SDL_Cursor * cursor); |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
49 |
|
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
50 |
/* Free a window manager cursor */ |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
51 |
void (*FreeCursor) (SDL_Cursor * cursor); |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
52 |
|
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
53 |
/* Warp the mouse to (x,y) */ |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
54 |
void (*WarpMouse) (SDL_Window * window, int x, int y); |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
55 |
|
5406
1517da4ab6b1
Implemented mouse relative mode on Mac OS X.
Sam Lantinga <slouken@libsdl.org>
parents:
5405
diff
changeset
|
56 |
/* Set relative mode */ |
1517da4ab6b1
Implemented mouse relative mode on Mac OS X.
Sam Lantinga <slouken@libsdl.org>
parents:
5405
diff
changeset
|
57 |
int (*SetRelativeMouseMode) (SDL_bool enabled); |
1517da4ab6b1
Implemented mouse relative mode on Mac OS X.
Sam Lantinga <slouken@libsdl.org>
parents:
5405
diff
changeset
|
58 |
|
5371
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
59 |
/* Data common to all mice */ |
6950
1ddb72193079
Added a mouse ID to the mouse events, which set to the special value SDL_TOUCH_MOUSEID for mouse events simulated by touch input.
Sam Lantinga <slouken@libsdl.org>
parents:
6885
diff
changeset
|
60 |
SDL_MouseID mouseID; |
5371
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
61 |
SDL_Window *focus; |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
62 |
int x; |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
63 |
int y; |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
64 |
int xdelta; |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
65 |
int ydelta; |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
66 |
int last_x, last_y; /* the last reported x and y coordinates */ |
6673
78f18a929123
Nobody will EVER use more than 8 buttons. Oh wait... Nobody will EVER use more than 32 buttons...
Sam Lantinga <slouken@libsdl.org>
parents:
6302
diff
changeset
|
67 |
Uint32 buttonstate; |
5371
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
68 |
SDL_bool relative_mode; |
6302
b0ae93a5b8d6
Make mouse relative mode save the original co-ordinates to restore them
Wim Looman <ghostunderscore@gmail.com>
parents:
6138
diff
changeset
|
69 |
/* the x and y coordinates when relative mode was activated */ |
b0ae93a5b8d6
Make mouse relative mode save the original co-ordinates to restore them
Wim Looman <ghostunderscore@gmail.com>
parents:
6138
diff
changeset
|
70 |
int original_x, original_y; |
5371
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
71 |
|
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
72 |
SDL_Cursor *cursors; |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
73 |
SDL_Cursor *def_cursor; |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
74 |
SDL_Cursor *cur_cursor; |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
75 |
SDL_bool cursor_shown; |
7114
02b2fe147478
Mac: Fix relative mode message after gaining focus.
Jørgen P. Tjernø <jorgen@valvesoftware.com>
parents:
6950
diff
changeset
|
76 |
|
02b2fe147478
Mac: Fix relative mode message after gaining focus.
Jørgen P. Tjernø <jorgen@valvesoftware.com>
parents:
6950
diff
changeset
|
77 |
/* Driver-dependent data. */ |
02b2fe147478
Mac: Fix relative mode message after gaining focus.
Jørgen P. Tjernø <jorgen@valvesoftware.com>
parents:
6950
diff
changeset
|
78 |
void *driverdata; |
5371
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
79 |
} SDL_Mouse; |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
80 |
|
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
81 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
82 |
/* Initialize the mouse subsystem */ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
83 |
extern int SDL_MouseInit(void); |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
84 |
|
5371
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
85 |
/* Get the mouse state structure */ |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
86 |
SDL_Mouse *SDL_GetMouse(void); |
fc3d3d580777
Fixed the responder chain for event handling, the listener fully handles mouse events - even in fullscreen mode.
Sam Lantinga <slouken@libsdl.org>
parents:
5262
diff
changeset
|
87 |
|
5405
64fa8526e1ce
Added a cleaner way to set the default cursor.
Sam Lantinga <slouken@libsdl.org>
parents:
5376
diff
changeset
|
88 |
/* Set the default mouse cursor */ |
64fa8526e1ce
Added a cleaner way to set the default cursor.
Sam Lantinga <slouken@libsdl.org>
parents:
5376
diff
changeset
|
89 |
extern void SDL_SetDefaultCursor(SDL_Cursor * cursor); |
64fa8526e1ce
Added a cleaner way to set the default cursor.
Sam Lantinga <slouken@libsdl.org>
parents:
5376
diff
changeset
|
90 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
91 |
/* Set the mouse focus window */ |
4465
3e69e077cb95
Removed multi-mouse / multi-keyboard support in anticipation of a real multi-mouse and multi-touch API.
Sam Lantinga <slouken@libsdl.org>
parents:
3697
diff
changeset
|
92 |
extern void SDL_SetMouseFocus(SDL_Window * window); |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
93 |
|
4465
3e69e077cb95
Removed multi-mouse / multi-keyboard support in anticipation of a real multi-mouse and multi-touch API.
Sam Lantinga <slouken@libsdl.org>
parents:
3697
diff
changeset
|
94 |
/* Send a mouse motion event */ |
6950
1ddb72193079
Added a mouse ID to the mouse events, which set to the special value SDL_TOUCH_MOUSEID for mouse events simulated by touch input.
Sam Lantinga <slouken@libsdl.org>
parents:
6885
diff
changeset
|
95 |
extern int SDL_SendMouseMotion(SDL_Window * window, SDL_MouseID mouseID, int relative, int x, int y); |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
96 |
|
4465
3e69e077cb95
Removed multi-mouse / multi-keyboard support in anticipation of a real multi-mouse and multi-touch API.
Sam Lantinga <slouken@libsdl.org>
parents:
3697
diff
changeset
|
97 |
/* Send a mouse button event */ |
6950
1ddb72193079
Added a mouse ID to the mouse events, which set to the special value SDL_TOUCH_MOUSEID for mouse events simulated by touch input.
Sam Lantinga <slouken@libsdl.org>
parents:
6885
diff
changeset
|
98 |
extern int SDL_SendMouseButton(SDL_Window * window, SDL_MouseID mouseID, Uint8 state, Uint8 button); |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
99 |
|
4465
3e69e077cb95
Removed multi-mouse / multi-keyboard support in anticipation of a real multi-mouse and multi-touch API.
Sam Lantinga <slouken@libsdl.org>
parents:
3697
diff
changeset
|
100 |
/* Send a mouse wheel event */ |
6950
1ddb72193079
Added a mouse ID to the mouse events, which set to the special value SDL_TOUCH_MOUSEID for mouse events simulated by touch input.
Sam Lantinga <slouken@libsdl.org>
parents:
6885
diff
changeset
|
101 |
extern int SDL_SendMouseWheel(SDL_Window * window, SDL_MouseID mouseID, int x, int y); |
2727
76c2fc9696ea
Fixed crash when tablet isn't detected properly
Sam Lantinga <slouken@libsdl.org>
parents:
2712
diff
changeset
|
102 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
103 |
/* Shutdown the mouse subsystem */ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
104 |
extern void SDL_MouseQuit(void); |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
105 |
|
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
106 |
#endif /* _SDL_mouse_c_h */ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
107 |
|
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
diff
changeset
|
108 |
/* vi: set ts=4 sw=4 expandtab: */ |