comparison src/video/vgl/SDL_vglmouse.c @ 1668:4da1ee79c9af SDL-1.3

more tweaking indent options
author Sam Lantinga <slouken@libsdl.org>
date Mon, 29 May 2006 04:04:35 +0000
parents 782fd950bd46
children
comparison
equal deleted inserted replaced
1667:1fddae038bc8 1668:4da1ee79c9af
33 int unused; 33 int unused;
34 }; 34 };
35 35
36 36
37 void 37 void
38 VGL_FreeWMCursor (_THIS, WMcursor * cursor) 38 VGL_FreeWMCursor(_THIS, WMcursor * cursor)
39 { 39 {
40 return; 40 return;
41 } 41 }
42 42
43 WMcursor * 43 WMcursor *
44 VGL_CreateWMCursor (_THIS, 44 VGL_CreateWMCursor(_THIS,
45 Uint8 * data, Uint8 * mask, int w, int h, int hot_x, 45 Uint8 * data, Uint8 * mask, int w, int h, int hot_x,
46 int hot_y) 46 int hot_y)
47 { 47 {
48 return (NULL); 48 return (NULL);
49 } 49 }
50 50
51 int 51 int
52 VGL_ShowWMCursor (_THIS, WMcursor * cursor) 52 VGL_ShowWMCursor(_THIS, WMcursor * cursor)
53 { 53 {
54 return (0); 54 return (0);
55 } 55 }
56 56
57 void 57 void
58 VGL_WarpWMCursor (_THIS, Uint16 x, Uint16 y) 58 VGL_WarpWMCursor(_THIS, Uint16 x, Uint16 y)
59 { 59 {
60 SDL_PrivateMouseMotion (0, 0, x, y); 60 SDL_PrivateMouseMotion(0, 0, x, y);
61 } 61 }
62 62
63 /* vi: set ts=4 sw=4 expandtab: */ 63 /* vi: set ts=4 sw=4 expandtab: */