|
Size: 635
Comment: Per quick feedback form, adding SDL_RaiseWindow to related functions list
|
← Revision 13 as of 2014-12-21 21:03:15 ⇥
Size: 637
Comment: Fixed camel case links.
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 23: | Line 23: |
| In SDL 1.2 you might have used BOOL WINAPI ShowWindow(_In_ HWND hWnd, _In_ int nCmdShow) for Win32 builds. SDL_ShowWindow() replaces this. | In SDL 1.2 you might have used BOOL WINAPI !ShowWindow(_In_ HWND hWnd, _In_ int nCmdShow) for Win32 builds. SDL_!ShowWindow() replaces this. |
SDL_ShowWindow
Use this function to show a window.
Syntax
void SDL_ShowWindow(SDL_Window* window)
Function Parameters
window |
the window to show |
Code Examples
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.
