comparison src/video/win32/SDL_win32events.h @ 1719:5b9f50c957ed SDL-1.3

You can now create multiple windows on Win32
author Sam Lantinga <slouken@libsdl.org>
date Wed, 28 Jun 2006 08:12:07 +0000
parents ed4d4f1ea201
children
comparison
equal deleted inserted replaced
1718:ed4d4f1ea201 1719:5b9f50c957ed
22 #include "SDL_config.h" 22 #include "SDL_config.h"
23 23
24 #ifndef _SDL_win32events_h 24 #ifndef _SDL_win32events_h
25 #define _SDL_win32events_h 25 #define _SDL_win32events_h
26 26
27 #include "../SDL_sysvideo.h"
28
29 extern LPTSTR SDL_Appname; 27 extern LPTSTR SDL_Appname;
30 extern Uint32 SDL_Appstyle; 28 extern Uint32 SDL_Appstyle;
31 extern HINSTANCE SDL_Instance; 29 extern HINSTANCE SDL_Instance;
32 30
31 extern LRESULT CALLBACK WIN_WindowProc(HWND hwnd, UINT msg, WPARAM wParam,
32 LPARAM lParam);
33 extern void WIN_PumpEvents(_THIS); 33 extern void WIN_PumpEvents(_THIS);
34 extern void WIN_SetError(const char *prefix);
34 35
35 #endif /* _SDL_win32events_h */ 36 #endif /* _SDL_win32events_h */
36 37
37 /* vi: set ts=4 sw=4 expandtab: */ 38 /* vi: set ts=4 sw=4 expandtab: */