equal
deleted
inserted
replaced
70 extern int SDL_MouseInit(void); |
70 extern int SDL_MouseInit(void); |
71 |
71 |
72 /* Get the mouse state structure */ |
72 /* Get the mouse state structure */ |
73 SDL_Mouse *SDL_GetMouse(void); |
73 SDL_Mouse *SDL_GetMouse(void); |
74 |
74 |
|
75 /* Set the default mouse cursor */ |
|
76 extern void SDL_SetDefaultCursor(SDL_Cursor * cursor); |
|
77 |
75 /* Set the mouse focus window */ |
78 /* Set the mouse focus window */ |
76 extern void SDL_SetMouseFocus(SDL_Window * window); |
79 extern void SDL_SetMouseFocus(SDL_Window * window); |
77 |
80 |
78 /* Send a mouse motion event */ |
81 /* Send a mouse motion event */ |
79 extern int SDL_SendMouseMotion(SDL_Window * window, int relative, int x, int y); |
82 extern int SDL_SendMouseMotion(SDL_Window * window, int relative, int x, int y); |