Added empty text input functions for win32.

This commit is contained in:
dewyatt 2010-07-06 02:34:49 -04:00
parent 07e6c52137
commit a9eb1670a1
3 changed files with 26 additions and 0 deletions

View file

@ -122,4 +122,23 @@ WIN_QuitKeyboard(_THIS)
{
}
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: */