Penguin
Blame: SDL_SysWMEvent(3)
EditPageHistoryDiffInfoLikePages
Annotated edit history of SDL_SysWMEvent(3) version 2, including all changes. View license author blame.
Rev Author # Line
1 perry 1 SDL_SysWMEvent
2 !!!SDL_SysWMEvent
3 NAME
4 DESCRIPTION
5 SEE ALSO
6 ----
7 !!NAME
8
9
10 SDL_SysWMEvent- Platform-dependent window manager event.
11 !!DESCRIPTION
12
13
14 The system window manager event contains a pointer to
15 system-specific information about unknown window manager
16 events. If you enable this event using
2 perry 17 __SDL_!EventState()__, it will be generated whenever
1 perry 18 unhandled events are received from the window manager. This
19 can be used, for example, to implement cut-and-paste in your
20 application.
21
22
23 typedef struct {
24 Uint8 type; /* Always SDL_SysWM */
25 } SDL_SysWMEvent;
26 If you want to obtain system-specific information about the window manager, you can fill the version member of a __SDL_SysWMinfo__ structure (details can be found in __SDL_syswm.h__, which must be included) using the __SDL_VERSION()__ macro found in __SDL_version.h__, and pass it to the function:
27
28
29 __int SDL_GetWMInfo__(__SDL_SysWMinfo
30 *info__);
31 !!SEE ALSO
32
33
2 perry 34 __SDL_!EventState__
1 perry 35 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.