working on io integration
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1092 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
ca67762af0
commit
c66f36c573
1 changed files with 23 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
;Modern UI Header File version 1.19c
|
||||
;Modern UI Header File version 1.19d - WORKING ON INSTALLOPTIONS INTEGRATION
|
||||
;Written by Joost Verburg
|
||||
|
||||
;See Example.nsi & Multilanguage.nsi for an example of usage
|
||||
|
@ -244,4 +244,26 @@
|
|||
|
||||
!macroend
|
||||
|
||||
!macro MUI_INSTALLOPTIONS_UNBACK
|
||||
|
||||
StrCmp ${IO_DIRECTION} "${IO_DIRECTION_NEXT}" "" +3
|
||||
Call un.onPrevPage
|
||||
Abort
|
||||
StrCmp ${IO_DIRECTION} "${IO_DIRECTION_PREV}" "" +3
|
||||
Call un.onPrevPage
|
||||
Goto done
|
||||
|
||||
!macroend
|
||||
|
||||
!macro MUI_INSTALLOPTIONS_UNNEXT
|
||||
|
||||
StrCmp ${IO_DIRECTION} ${IO_DIRECTION_NEXT} "" +3
|
||||
Call un.onNextPage
|
||||
Goto done
|
||||
StrCmp ${IO_DIRECTION} ${IO_DIRECTION_PREV} "" +3
|
||||
Call un.onNextPage
|
||||
Abort
|
||||
|
||||
!macroend
|
||||
|
||||
!endif
|
Loading…
Add table
Add a link
Reference in a new issue