diff src/video/SDL_video.c @ 3130:fef1a835af43 gsoc2009_IME

Basic text input API
author Jiang Jiang <gzjjgod@gmail.com>
date Fri, 26 Jun 2009 10:37:57 +0000
parents 7dc982143c06
children f4e553ec6a62
line wrap: on
line diff
--- a/src/video/SDL_video.c	Sun May 31 16:57:29 2009 +0000
+++ b/src/video/SDL_video.c	Fri Jun 26 10:37:57 2009 +0000
@@ -3067,4 +3067,12 @@
     return (_this->GetWindowWMInfo(_this, window, info));
 }
 
+void
+SDL_StartTextInput(SDL_Rect *rect)
+{
+    if (_this->StartTextInput) {
+        _this->StartTextInput(_this, rect);
+    }
+}
+
 /* vi: set ts=4 sw=4 expandtab: */