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:
joostverburg 2002-09-20 22:57:09 +00:00
parent ca67762af0
commit c66f36c573

View file

@ -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