slouken@1895
|
1 |
/*
|
slouken@1895
|
2 |
SDL - Simple DirectMedia Layer
|
slouken@1895
|
3 |
Copyright (C) 1997-2006 Sam Lantinga
|
slouken@1895
|
4 |
|
slouken@1895
|
5 |
This library is free software; you can redistribute it and/or
|
slouken@1895
|
6 |
modify it under the terms of the GNU Lesser General Public
|
slouken@1895
|
7 |
License as published by the Free Software Foundation; either
|
slouken@1895
|
8 |
version 2.1 of the License, or (at your option) any later version.
|
slouken@1895
|
9 |
|
slouken@1895
|
10 |
This library is distributed in the hope that it will be useful,
|
slouken@1895
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
slouken@1895
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
slouken@1895
|
13 |
Lesser General Public License for more details.
|
slouken@1895
|
14 |
|
slouken@1895
|
15 |
You should have received a copy of the GNU Lesser General Public
|
slouken@1895
|
16 |
License along with this library; if not, write to the Free Software
|
slouken@1895
|
17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
slouken@1895
|
18 |
|
slouken@1895
|
19 |
Sam Lantinga
|
slouken@1895
|
20 |
slouken@libsdl.org
|
slouken@1895
|
21 |
*/
|
slouken@1895
|
22 |
#include "SDL_config.h"
|
slouken@1895
|
23 |
|
slouken@1895
|
24 |
#ifndef _SDL_win32events_h
|
slouken@1895
|
25 |
#define _SDL_win32events_h
|
slouken@1895
|
26 |
|
slouken@1895
|
27 |
extern LPTSTR SDL_Appname;
|
slouken@1895
|
28 |
extern Uint32 SDL_Appstyle;
|
slouken@1895
|
29 |
extern HINSTANCE SDL_Instance;
|
slouken@1895
|
30 |
|
slouken@1895
|
31 |
extern LRESULT CALLBACK WIN_WindowProc(HWND hwnd, UINT msg, WPARAM wParam,
|
slouken@1895
|
32 |
LPARAM lParam);
|
slouken@1895
|
33 |
extern void WIN_PumpEvents(_THIS);
|
slouken@1895
|
34 |
extern void WIN_SetError(const char *prefix);
|
slouken@1895
|
35 |
|
slouken@1895
|
36 |
#endif /* _SDL_win32events_h */
|
slouken@1895
|
37 |
|
slouken@1895
|
38 |
/* vi: set ts=4 sw=4 expandtab: */
|