- Fixed more problems with !if[n]def/!else
- Saved another 10 bytes :) git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2237 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
ef7dcf5e4f
commit
d2e565e55e
2 changed files with 18 additions and 10 deletions
|
@ -200,10 +200,6 @@ static int NSISCALL ExecuteEntry(entry *entry_)
|
|||
Sleep(x);
|
||||
}
|
||||
return 0;
|
||||
case EW_HIDEWINDOW:
|
||||
log_printf("HideWindow");
|
||||
ShowWindow(g_hwnd,SW_HIDE);
|
||||
return 0;
|
||||
case EW_BRINGTOFRONT:
|
||||
log_printf("BringToFront");
|
||||
ShowWindow(g_hwnd,SW_SHOW);
|
||||
|
@ -798,6 +794,7 @@ static int NSISCALL ExecuteEntry(entry *entry_)
|
|||
}
|
||||
return 0;
|
||||
case EW_SHOWWINDOW:
|
||||
if (parm2) log_printf("HideWindow");
|
||||
ShowWindow((HWND)process_string_fromparm_toint(0),process_string_fromparm_toint(1));
|
||||
return 0;
|
||||
#endif//NSIS_CONFIG_ENHANCEDUI_SUPPORT
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue