Mercurial > sdl-ios-xcode
comparison src/video/uikit/SDL_uikitvideo.m @ 3643:41253c0fa9b3
Fixed function prototype
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 13 Jan 2010 05:21:30 +0000 |
parents | 8b18669c2663 |
children | c598e440c87c |
comparison
equal
deleted
inserted
replaced
3642:a10ad9826417 | 3643:41253c0fa9b3 |
---|---|
37 | 37 |
38 #define UIKITVID_DRIVER_NAME "uikit" | 38 #define UIKITVID_DRIVER_NAME "uikit" |
39 | 39 |
40 /* Initialization/Query functions */ | 40 /* Initialization/Query functions */ |
41 static int UIKit_VideoInit(_THIS); | 41 static int UIKit_VideoInit(_THIS); |
42 static int UIKit_SetDisplayMode(_THIS, SDL_DisplayMode * mode); | 42 static int UIKit_SetDisplayMode(_THIS, SDL_VideoDisplay * display, |
43 SDL_DisplayMode * mode); | |
43 static void UIKit_VideoQuit(_THIS); | 44 static void UIKit_VideoQuit(_THIS); |
44 | 45 |
45 /* DUMMY driver bootstrap functions */ | 46 /* DUMMY driver bootstrap functions */ |
46 | 47 |
47 static int | 48 static int |
130 /* We're done! */ | 131 /* We're done! */ |
131 return 0; | 132 return 0; |
132 } | 133 } |
133 | 134 |
134 static int | 135 static int |
135 UIKit_SetDisplayMode(_THIS, SDL_DisplayMode * mode) | 136 UIKit_SetDisplayMode(_THIS, SDL_VideoDisplay * display, SDL_DisplayMode * mode) |
136 { | 137 { |
137 return 0; | 138 return 0; |
138 } | 139 } |
139 | 140 |
140 void | 141 void |