Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Added empty text input functions for win32.
Browse files Browse the repository at this point in the history
  • Loading branch information
dewyatt committed Jul 6, 2010
1 parent c16c411 commit fb05f1a
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/video/win32/SDL_win32keyboard.c
Expand Up @@ -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: */
4 changes: 4 additions & 0 deletions src/video/win32/SDL_win32keyboard.h
Expand Up @@ -31,6 +31,10 @@ extern void WIN_InitKeyboard(_THIS);
extern void WIN_UpdateKeymap(void);
extern void WIN_QuitKeyboard(_THIS);

extern void WIN_StartTextInput(_THIS);
extern void WIN_StopTextInput(_THIS);
extern void WIN_SetTextInputRect(_THIS, SDL_Rect *rect);

#endif /* _SDL_win32keyboard_h */

/* vi: set ts=4 sw=4 expandtab: */
3 changes: 3 additions & 0 deletions src/video/win32/SDL_win32video.c
Expand Up @@ -162,6 +162,9 @@ WIN_CreateDevice(int devindex)
device->GL_SwapWindow = WIN_GL_SwapWindow;
device->GL_DeleteContext = WIN_GL_DeleteContext;
#endif
device->StartTextInput = WIN_StartTextInput;
device->StopTextInput = WIN_StartTextInput;
device->SetTextInputRect = WIN_SetTextInputRect;

device->free = WIN_DeleteDevice;

Expand Down

0 comments on commit fb05f1a

Please sign in to comment.