| 992 | return true; |
| 993 | } |
| 994 | bool SDL_SetWindowPosition(SDL_Window* window, int x, int y) |
| 995 | { |
| 996 | (void)window; |
| 997 | (void)x; |
| 998 | (void)y; |
| 999 | return true; |
| 1000 | } |
| 1001 | bool SDL_RaiseWindow(SDL_Window* window) { (void)window; return true; } |
| 1002 | bool SDL_MinimizeWindow(SDL_Window* window) { (void)window; return true; } |
| 1003 | void SDL_DestroyWindow(SDL_Window* window) |
no outgoing calls
no test coverage detected