0
Declarations # extern int IsIconic(in int); # extern int IsZoomed(in int); # Restore window public function wg_win_restore(in wname) { auto hwnd; win_get_info(wname, "handle", hwnd); if (IsIconic(hwnd) == 1) win_restore(wname); if (IsZoomed(hwnd) == 1) win_restore(wname); } Minimize window public function wg_win_min(in wname) { auto hwnd; win_get_info(wname, "handle", hwnd); if ...

