Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Documentation clarification
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Sep 30, 2010
1 parent 1073dce commit 6dc6278
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions include/SDL_syswm.h
Expand Up @@ -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*/;
Expand Down

0 comments on commit 6dc6278

Please sign in to comment.