From 6dc62783988da4755973ef6cb0c7a2eae1b731ec Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Wed, 29 Sep 2010 21:24:50 -0700 Subject: [PATCH] Documentation clarification --- include/SDL_syswm.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/SDL_syswm.h b/include/SDL_syswm.h index ddf0151ba..f0e240889 100644 --- a/include/SDL_syswm.h +++ b/include/SDL_syswm.h @@ -151,28 +151,28 @@ struct SDL_SysWMinfo #if defined(SDL_VIDEO_DRIVER_WIN32) struct { - HWND window; /**< The Win32 display window */ + HWND window; /**< The window handle */ } win; #endif #if defined(SDL_VIDEO_DRIVER_X11) struct { Display *display; /**< The X11 display */ - Window window; /**< The X11 display window */ + Window window; /**< The X11 window */ } x11; #endif #if defined(SDL_VIDEO_DRIVER_DIRECTFB) struct { - IDirectFB *dfb; /**< The directfb main interface */ - IDirectFBWindow *window; /**< The directfb window handle */ - IDirectFBSurface *surface; /**< The directfb client surface */ + IDirectFB *dfb; /**< The directfb main interface */ + IDirectFBWindow *window; /**< The directfb window handle */ + IDirectFBSurface *surface; /**< The directfb client surface */ } dfb; #endif #if defined(SDL_VIDEO_DRIVER_COCOA) struct { - NSWindow *window; + NSWindow *window; /* The Cocoa window */ } cocoa; #endif } /*info*/;