comparison 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
comparison
equal deleted inserted replaced
1723:4bdbb9b2bd0a 1724:6c63fc2bd986
33 33
34 SDL_zero(keyboard); 34 SDL_zero(keyboard);
35 data->keyboard = SDL_AddKeyboard(&keyboard, -1); 35 data->keyboard = SDL_AddKeyboard(&keyboard, -1);
36 } 36 }
37 37
38 void
39 WIN_DelKeyboard(_THIS)
40 {
41 SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
42
43 SDL_DelKeyboard(data->keyboard);
44 }
45
38 /* vi: set ts=4 sw=4 expandtab: */ 46 /* vi: set ts=4 sw=4 expandtab: */