comparison 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
comparison
equal deleted inserted replaced
4746:0c39b36dd104 4747:5284a3b3217a
120 void 120 void
121 WIN_QuitKeyboard(_THIS) 121 WIN_QuitKeyboard(_THIS)
122 { 122 {
123 } 123 }
124 124
125 void
126 WIN_StartTextInput(_THIS)
127 {
128 HWND hwnd = ((SDL_WindowData *) window->driverdata)->hwnd;
129
130 }
131
132 void
133 WIN_StopTextInput(_THIS)
134 {
135
136 }
137
138 void
139 WIN_SetTextInputRect(_THIS, SDL_Rect *rect)
140 {
141
142 }
143
125 /* vi: set ts=4 sw=4 expandtab: */ 144 /* vi: set ts=4 sw=4 expandtab: */