# HG changeset patch # User Sam Lantinga # Date 1101828089 0 # Node ID 8be85fa59cf3ce18657a81697398873840557c22 # Parent 0e6627072f7a53fc724f03c20a1c4c57cf996621 Added a usage example for SDL_GetWMInfo() diff -r 0e6627072f7a -r 8be85fa59cf3 include/SDL_syswm.h --- a/include/SDL_syswm.h Tue Nov 30 14:45:08 2004 +0000 +++ b/include/SDL_syswm.h Tue Nov 30 15:21:29 2004 +0000 @@ -188,6 +188,11 @@ * It fills the structure pointed to by 'info' with custom information and * returns 1 if the function is implemented. If it's not implemented, or * the version member of the 'info' structure is invalid, it returns 0. + * + * You typically use this function like this: + * SDL_SysWMInfo info; + * SDL_VERSION(&info.version); + * if ( SDL_GetWMInfo(&info) ) { ... } */ extern DECLSPEC int SDLCALL SDL_GetWMInfo(SDL_SysWMinfo *info);