comparison include/SDL_syswm.h @ 3274:08574b033f37

Removed outdated Nano-X support
author Sam Lantinga <slouken@libsdl.org>
date Sat, 19 Sep 2009 07:26:51 +0000
parents 979164e58723
children d3baf5ac4e37
comparison
equal deleted inserted replaced
3273:e0dfba770eb7 3274:08574b033f37
110 Window wmwindow; /* The X11 managed input window */ 110 Window wmwindow; /* The X11 managed input window */
111 } x11; 111 } x11;
112 } info; 112 } info;
113 }; 113 };
114 114
115 #elif defined(SDL_VIDEO_DRIVER_NANOX)
116 #include <microwin/nano-X.h>
117
118 /* The generic custom event structure */
119 struct SDL_SysWMmsg
120 {
121 SDL_version version;
122 int data;
123 };
124
125 /* The windows custom window manager information structure */
126 struct SDL_SysWMinfo
127 {
128 SDL_version version;
129 GR_WINDOW_ID window; /* The display window */
130 };
131
132 #elif defined(SDL_VIDEO_DRIVER_WIN32) 115 #elif defined(SDL_VIDEO_DRIVER_WIN32)
133 #define WIN32_LEAN_AND_MEAN 116 #define WIN32_LEAN_AND_MEAN
134 #include <windows.h> 117 #include <windows.h>
135 118
136 /* The windows custom event structure */ 119 /* The windows custom event structure */