author | Andreas Schiffler <aschiffler@ferzkopp.net> |
Mon, 23 Aug 2010 23:44:28 -0700 | |
changeset 4865 | fff50e86c891 |
parent 3697 | f7b03b6838cb |
child 5062 | e8916fe9cfc8 |
permissions | -rw-r--r-- |
slouken@0 | 1 |
/* |
slouken@0 | 2 |
SDL - Simple DirectMedia Layer |
slouken@3697 | 3 |
Copyright (C) 1997-2010 Sam Lantinga |
slouken@0 | 4 |
|
slouken@1336 | 5 |
This library is SDL_free software; you can redistribute it and/or |
slouken@1312 | 6 |
modify it under the terms of the GNU Lesser General Public |
slouken@0 | 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@0 | 9 |
|
slouken@0 | 10 |
This library is distributed in the hope that it will be useful, |
slouken@0 | 11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
slouken@0 | 12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
slouken@1312 | 13 |
Lesser General Public License for more details. |
slouken@0 | 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@0 | 18 |
|
slouken@0 | 19 |
Sam Lantinga |
slouken@252 | 20 |
slouken@libsdl.org |
slouken@0 | 21 |
*/ |
slouken@1402 | 22 |
#include "SDL_config.h" |
slouken@0 | 23 |
|
slouken@1361 | 24 |
#include "../video/SDL_sysvideo.h" |
slouken@0 | 25 |
|
slouken@0 | 26 |
/* Useful functions and variables from SDL_sysevents.c */ |
slouken@0 | 27 |
|
slouken@1895 | 28 |
#ifdef __BEOS__ /* The Be event loop runs in a separate thread */ |
slouken@0 | 29 |
#define MUST_THREAD_EVENTS |
slouken@0 | 30 |
#endif |
slouken@0 | 31 |
|
slouken@1895 | 32 |
#ifdef __WIN32__ /* Win32 doesn't allow a separate event thread */ |
slouken@0 | 33 |
#define CANT_THREAD_EVENTS |
slouken@0 | 34 |
#endif |
slouken@0 | 35 |
|
slouken@1895 | 36 |
/* vi: set ts=4 sw=4 expandtab: */ |