comparison src/video/SDL_cursor.c @ 1361:19418e4422cb

New configure-based build system. Still work in progress, but much improved
author Sam Lantinga <slouken@libsdl.org>
date Thu, 16 Feb 2006 10:11:48 +0000
parents c71e05b4dc2e
children d910939febfa
comparison
equal deleted inserted replaced
1360:70a9cfb4cf1b 1361:19418e4422cb
24 24
25 #include "SDL_mutex.h" 25 #include "SDL_mutex.h"
26 #include "SDL_video.h" 26 #include "SDL_video.h"
27 #include "SDL_mouse.h" 27 #include "SDL_mouse.h"
28 #include "SDL_blit.h" 28 #include "SDL_blit.h"
29 #include "SDL_events_c.h"
30 #include "SDL_sysvideo.h" 29 #include "SDL_sysvideo.h"
31 #include "SDL_sysevents.h"
32 #include "SDL_cursor_c.h" 30 #include "SDL_cursor_c.h"
33 #include "SDL_pixels_c.h" 31 #include "SDL_pixels_c.h"
34 #include "default_cursor.h" 32 #include "default_cursor.h"
33 #include "../events/SDL_sysevents.h"
34 #include "../events/SDL_events_c.h"
35 35
36 /* These are static for our cursor handling code */ 36 /* These are static for our cursor handling code */
37 volatile int SDL_cursorstate = CURSOR_VISIBLE; 37 volatile int SDL_cursorstate = CURSOR_VISIBLE;
38 SDL_Cursor *SDL_cursor = NULL; 38 SDL_Cursor *SDL_cursor = NULL;
39 static SDL_Cursor *SDL_defcursor = NULL; 39 static SDL_Cursor *SDL_defcursor = NULL;