# HG changeset patch # User Sam Lantinga # Date 1285820690 25200 # Node ID f50c7996d925a5112a2c4f2aefff67814b723b60 # Parent 50d0bff24d813173936e53ff872101e90abc7017 Documentation clarification diff -r 50d0bff24d81 -r f50c7996d925 include/SDL_syswm.h --- a/include/SDL_syswm.h Wed Sep 29 21:13:52 2010 -0700 +++ b/include/SDL_syswm.h Wed Sep 29 21:24:50 2010 -0700 @@ -151,28 +151,28 @@ #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*/;