Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
56 lines (41 loc) · 1.65 KB

SDL_mouse_c.h

File metadata and controls

56 lines (41 loc) · 1.65 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Jan 24, 2010
Jan 24, 2010
3
Copyright (C) 1997-2010 Sam Lantinga
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Sam Lantinga
slouken@libsdl.org
*/
#include "SDL_config.h"
#ifndef _SDL_mouse_c_h
#define _SDL_mouse_c_h
struct SDL_Cursor
{
Jan 14, 2011
Jan 14, 2011
29
struct SDL_Cursor *next;
30
31
32
33
34
35
void *driverdata;
};
/* Initialize the mouse subsystem */
extern int SDL_MouseInit(void);
May 10, 2010
May 10, 2010
36
37
/* Clear the mouse state */
extern void SDL_ResetMouse(void);
38
39
/* Set the mouse focus window */
May 10, 2010
May 10, 2010
40
extern void SDL_SetMouseFocus(SDL_Window * window);
May 10, 2010
May 10, 2010
42
/* Send a mouse motion event */
Jul 6, 2010
Jul 6, 2010
43
extern int SDL_SendMouseMotion(SDL_Window * window, int relative, int x, int y);
May 10, 2010
May 10, 2010
45
/* Send a mouse button event */
Jul 6, 2010
Jul 6, 2010
46
extern int SDL_SendMouseButton(SDL_Window * window, Uint8 state, Uint8 button);
May 10, 2010
May 10, 2010
48
/* Send a mouse wheel event */
Jul 6, 2010
Jul 6, 2010
49
extern int SDL_SendMouseWheel(SDL_Window * window, int x, int y);
Aug 26, 2008
Aug 26, 2008
50
51
52
53
54
55
56
/* Shutdown the mouse subsystem */
extern void SDL_MouseQuit(void);
#endif /* _SDL_mouse_c_h */
/* vi: set ts=4 sw=4 expandtab: */