author | Sam Lantinga <slouken@libsdl.org> |
Tue, 15 Dec 2009 08:11:06 +0000 | |
changeset 3565 | f43c8f688f77 |
parent 2859 | 99210400e8b9 |
permissions | -rw-r--r-- |
slouken@70 | 1 |
/* |
slouken@70 | 2 |
SDL - Simple DirectMedia Layer |
slouken@2859 | 3 |
Copyright (C) 1997-2009 Sam Lantinga |
slouken@70 | 4 |
|
slouken@70 | 5 |
This library is free software; you can redistribute it and/or |
slouken@1312 | 6 |
modify it under the terms of the GNU Lesser General Public |
slouken@70 | 7 |
License as published by the Free Software Foundation; either |
slouken@1312 | 8 |
version 2.1 of the License, or (at your option) any later version. |
slouken@70 | 9 |
|
slouken@70 | 10 |
This library is distributed in the hope that it will be useful, |
slouken@70 | 11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
slouken@70 | 12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
slouken@1312 | 13 |
Lesser General Public License for more details. |
slouken@70 | 14 |
|
slouken@1312 | 15 |
You should have received a copy of the GNU Lesser General Public |
slouken@1312 | 16 |
License along with this library; if not, write to the Free Software |
slouken@1312 | 17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
slouken@70 | 18 |
|
slouken@70 | 19 |
Sam Lantinga |
slouken@252 | 20 |
slouken@libsdl.org |
slouken@70 | 21 |
*/ |
slouken@1402 | 22 |
#include "SDL_config.h" |
slouken@70 | 23 |
|
slouken@70 | 24 |
#include "SDL_gsvideo.h" |
slouken@70 | 25 |
|
slouken@70 | 26 |
/* Variables and functions exported by SDL_sysevents.c to other parts |
slouken@70 | 27 |
of the native video subsystem (SDL_sysvideo.c) |
slouken@70 | 28 |
*/ |
slouken@70 | 29 |
extern int GS_OpenKeyboard(_THIS); |
slouken@70 | 30 |
extern void GS_CloseKeyboard(_THIS); |
slouken@70 | 31 |
extern int GS_OpenMouse(_THIS); |
slouken@70 | 32 |
extern void GS_CloseMouse(_THIS); |
slouken@70 | 33 |
extern int GS_EnterGraphicsMode(_THIS); |
slouken@70 | 34 |
extern int GS_InGraphicsMode(_THIS); |
slouken@70 | 35 |
extern void GS_LeaveGraphicsMode(_THIS); |
slouken@70 | 36 |
|
slouken@70 | 37 |
extern void GS_InitOSKeymap(_THIS); |
slouken@70 | 38 |
extern void GS_PumpEvents(_THIS); |
slouken@1895 | 39 |
/* vi: set ts=4 sw=4 expandtab: */ |