Mercurial > sdl-ios-xcode
diff src/video/win32/SDL_win32keyboard.c @ 1724:6c63fc2bd986 SDL-1.3
Proof of concept done - Win32 GDI implementation mostly complete.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 06 Jul 2006 07:17:11 +0000 |
parents | a1ebb17f9c52 |
children | 98a3207ddde8 |
line wrap: on
line diff
--- a/src/video/win32/SDL_win32keyboard.c Thu Jul 06 05:53:32 2006 +0000 +++ b/src/video/win32/SDL_win32keyboard.c Thu Jul 06 07:17:11 2006 +0000 @@ -35,4 +35,12 @@ data->keyboard = SDL_AddKeyboard(&keyboard, -1); } +void +WIN_DelKeyboard(_THIS) +{ + SDL_VideoData *data = (SDL_VideoData *) _this->driverdata; + + SDL_DelKeyboard(data->keyboard); +} + /* vi: set ts=4 sw=4 expandtab: */