|
Show flags help
This flags are used by the API_Window_Show function.
Flags:
SW_FORCEMINIMIZE - This function forces a window to minimize, even when the window handle is not created by the game.
SW_HIDE - Hides the window and activates another window.
SW_MAXIMIZE - Maximizes the window.
SW_MINIMIZE - Minimizes the window and activates the next window in the Z order.
SW_RESTORE - Activates and displays the window. If the window is minimized or maximized, the system restores it to its original size and position. You should specify this flag when restoring a minimized window.
SW_SHOW - Activates the window and displays it in its current size and position.
SW_SHOWDEFAULT - Shows the window based on the default show flag of the game.
SW_SHOWMAXIMIZED - Activates the window and shows it maximized.
SW_SHOWMINIMIZED - Activates the window and shows it minimized.
SW_SHOWMINNOACTIVE - Minimizes the window without activating it.
SW_SHOWNA - Displays the window without activating it.
SW_SHOWNOACTIVATE - Displays a window in its most recent size and position without activating it.
SW_SHOWNORMAL - Activates and displays a window. If the window is minimized or maximized, the system restores it to its original size and position.
|
|
|
|