Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
SDL_SysWMEvent(3)		SDL API Reference	       SDL_SysWMEvent(3)

NAME
     SDL_SysWMEvent - Platform-dependent window manager event.

DESCRIPTION
     The  system  window manager event contains a pointer to system-specific in-
     formation about unknown window manager events. If you enable this event us-
     ing SDL_EventState(), it will be generated whenever  unhandled  events  are
     received  from the window manager. This can be used, for example, to imple-
     ment cut-and-paste in your application.

     typedef struct {
	      Uint8 type;   /* Always SDL_SysWM */
      } SDL_SysWMEvent;

      If you want to obtain system-specific information about  the  window  man-
     ager, 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_VER-
     SION() macro found in SDL_version.h, and pass it to the function:

     int SDL_GetWMInfo(SDL_SysWMinfo *info);

SEE ALSO
     SDL_EventState

SDL			     Tue 11 Sep 2001, 23:00	       SDL_SysWMEvent(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=SDL_SysWMEvent&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help