Commit fdbac7e0 authored by Sam Lantinga's avatar Sam Lantinga

Documentation clarification

parent 3189c43f
......@@ -151,14 +151,14 @@ 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)
......@@ -172,7 +172,7 @@ struct SDL_SysWMinfo
#if defined(SDL_VIDEO_DRIVER_COCOA)
struct
{
NSWindow *window;
NSWindow *window; /* The Cocoa window */
} cocoa;
#endif
} /*info*/;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment