Documentation clarification
This commit is contained in:
parent
3189c43f85
commit
fdbac7e0ce
1 changed files with 6 additions and 6 deletions
|
@ -151,28 +151,28 @@ struct SDL_SysWMinfo
|
||||||
#if defined(SDL_VIDEO_DRIVER_WIN32)
|
#if defined(SDL_VIDEO_DRIVER_WIN32)
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
HWND window; /**< The Win32 display window */
|
HWND window; /**< The window handle */
|
||||||
} win;
|
} win;
|
||||||
#endif
|
#endif
|
||||||
#if defined(SDL_VIDEO_DRIVER_X11)
|
#if defined(SDL_VIDEO_DRIVER_X11)
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
Display *display; /**< The X11 display */
|
Display *display; /**< The X11 display */
|
||||||
Window window; /**< The X11 display window */
|
Window window; /**< The X11 window */
|
||||||
} x11;
|
} x11;
|
||||||
#endif
|
#endif
|
||||||
#if defined(SDL_VIDEO_DRIVER_DIRECTFB)
|
#if defined(SDL_VIDEO_DRIVER_DIRECTFB)
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
IDirectFB *dfb; /**< The directfb main interface */
|
IDirectFB *dfb; /**< The directfb main interface */
|
||||||
IDirectFBWindow *window; /**< The directfb window handle */
|
IDirectFBWindow *window; /**< The directfb window handle */
|
||||||
IDirectFBSurface *surface; /**< The directfb client surface */
|
IDirectFBSurface *surface; /**< The directfb client surface */
|
||||||
} dfb;
|
} dfb;
|
||||||
#endif
|
#endif
|
||||||
#if defined(SDL_VIDEO_DRIVER_COCOA)
|
#if defined(SDL_VIDEO_DRIVER_COCOA)
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
NSWindow *window;
|
NSWindow *window; /* The Cocoa window */
|
||||||
} cocoa;
|
} cocoa;
|
||||||
#endif
|
#endif
|
||||||
} /*info*/;
|
} /*info*/;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue