comparison include/SDL_syswm.h @ 4903:f50c7996d925

Documentation clarification
author Sam Lantinga <slouken@libsdl.org>
date Wed, 29 Sep 2010 21:24:50 -0700
parents 50d0bff24d81
children 8b7988f42fcb
comparison
equal deleted inserted replaced
4902:50d0bff24d81 4903:f50c7996d925
149 union 149 union
150 { 150 {
151 #if defined(SDL_VIDEO_DRIVER_WIN32) 151 #if defined(SDL_VIDEO_DRIVER_WIN32)
152 struct 152 struct
153 { 153 {
154 HWND window; /**< The Win32 display window */ 154 HWND window; /**< The window handle */
155 } win; 155 } win;
156 #endif 156 #endif
157 #if defined(SDL_VIDEO_DRIVER_X11) 157 #if defined(SDL_VIDEO_DRIVER_X11)
158 struct 158 struct
159 { 159 {
160 Display *display; /**< The X11 display */ 160 Display *display; /**< The X11 display */
161 Window window; /**< The X11 display window */ 161 Window window; /**< The X11 window */
162 } x11; 162 } x11;
163 #endif 163 #endif
164 #if defined(SDL_VIDEO_DRIVER_DIRECTFB) 164 #if defined(SDL_VIDEO_DRIVER_DIRECTFB)
165 struct 165 struct
166 { 166 {
167 IDirectFB *dfb; /**< The directfb main interface */ 167 IDirectFB *dfb; /**< The directfb main interface */
168 IDirectFBWindow *window; /**< The directfb window handle */ 168 IDirectFBWindow *window; /**< The directfb window handle */
169 IDirectFBSurface *surface; /**< The directfb client surface */ 169 IDirectFBSurface *surface; /**< The directfb client surface */
170 } dfb; 170 } dfb;
171 #endif 171 #endif
172 #if defined(SDL_VIDEO_DRIVER_COCOA) 172 #if defined(SDL_VIDEO_DRIVER_COCOA)
173 struct 173 struct
174 { 174 {
175 NSWindow *window; 175 NSWindow *window; /* The Cocoa window */
176 } cocoa; 176 } cocoa;
177 #endif 177 #endif
178 } /*info*/; 178 } /*info*/;
179 }; 179 };
180 180