Mercurial > sdl-ios-xcode
diff src/video/win32/SDL_win32keyboard.c @ 4747:5284a3b3217a
Added empty text input functions for win32.
author | dewyatt |
---|---|
date | Tue, 06 Jul 2010 02:34:49 -0400 |
parents | 3e69e077cb95 |
children | d1ce08e2697f |
line wrap: on
line diff
--- a/src/video/win32/SDL_win32keyboard.c Tue Jul 06 02:07:42 2010 -0400 +++ b/src/video/win32/SDL_win32keyboard.c Tue Jul 06 02:34:49 2010 -0400 @@ -122,4 +122,23 @@ { } +void +WIN_StartTextInput(_THIS) +{ + HWND hwnd = ((SDL_WindowData *) window->driverdata)->hwnd; + +} + +void +WIN_StopTextInput(_THIS) +{ + +} + +void +WIN_SetTextInputRect(_THIS, SDL_Rect *rect) +{ + +} + /* vi: set ts=4 sw=4 expandtab: */