#pragma section-numbers off #pragma camelcase off = SDL_ShowWindow = Use this function to show a window. <> == Syntax == {{{#!highlight cpp void SDL_ShowWindow(SDL_Window* window) }}} == Function Parameters == ||'''window'''||the window to show|| == Code Examples == {{{#!highlight cpp SDL_ShowWindow(window); }}} == Remarks == In SDL 1.2 you might have used BOOL WINAPI !ShowWindow(_In_ HWND hWnd, _In_ int nCmdShow) for Win32 builds. SDL_!ShowWindow() replaces this. == Related Functions == .[[SDL_HideWindow]] .[[SDL_RaiseWindow]] ---- [[CategoryAPI]], [[CategoryVideo]]