Mercurial > sdl-ios-xcode
comparison 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 |
comparison
equal
deleted
inserted
replaced
3129:e42873b9c6f1 | 3130:fef1a835af43 |
---|---|
3065 return SDL_FALSE; | 3065 return SDL_FALSE; |
3066 } | 3066 } |
3067 return (_this->GetWindowWMInfo(_this, window, info)); | 3067 return (_this->GetWindowWMInfo(_this, window, info)); |
3068 } | 3068 } |
3069 | 3069 |
3070 void | |
3071 SDL_StartTextInput(SDL_Rect *rect) | |
3072 { | |
3073 if (_this->StartTextInput) { | |
3074 _this->StartTextInput(_this, rect); | |
3075 } | |
3076 } | |
3077 | |
3070 /* vi: set ts=4 sw=4 expandtab: */ | 3078 /* vi: set ts=4 sw=4 expandtab: */ |