| 27 | |
| 28 | void (*_SDL_WM_GetCaption)(const char**, const char**) = NULL; |
| 29 | void SDL_WM_GetCaption(const char **title, const char **icon) { |
| 30 | _SDL_WM_GetCaption(title, icon); |
| 31 | } |
| 32 | |
| 33 | void (*_SDL_WM_SetCaption)(const char*, const char*) = NULL; |
| 34 | void SDL_WM_SetCaption(const char *title, const char *icon) { |
no outgoing calls
no test coverage detected