RosBE/RosBE-Windows/RosSourceDir.nsh
Daniel Reimer 172e96b7bc Update Russian LangFile of options.exe (thx to towerr once more) STILL a problem which causes the resources to be displayed wrong.
Set EOL:Style native
Remove trailing Spaces

svn path=/trunk/tools/RosBE-Windows/; revision=398
2007-10-19 09:52:23 +00:00

17 lines
669 B
Plaintext

!macro CUSTOM_PAGE_ROSDIRECTORY
PageEx custom
Caption ""
PageCallBacks "RosDir.show" "RosDir.leave"
PageExEnd
Function RosDir.show
!insertmacro MUI_HEADER_TEXT "Select ReactOS Source Location" "Select the directory where the ReactOS sources are located or will be checked out to later."
!insertmacro MUI_INSTALLOPTIONS_WRITE "RosSourceDir.ini" "Field 2" "State" "$INSTDIR\Source"
!insertmacro MUI_INSTALLOPTIONS_DISPLAY "RosSourceDir.ini"
FunctionEnd
Function RosDir.leave
!insertmacro MUI_INSTALLOPTIONS_READ $REACTOS_SOURCE_DIRECTORY "RosSourceDir.ini" "Field 2" "State"
FunctionEnd
!macroend