Mosestycoon
4th July 2003 18:43 UTC
Outsource nsi-script parts
Hello
Simple question: Is there a possibility to load parts of the nsi-script by including it? I started a project where several developers are included to program several parts of the script. If which parts can be outsourced?
kichik
4th July 2003 18:52 UTC
You can use !include to include any text file. The text file can contain anything including macros, instructions and attributes. The script in the file will be treated as part of the original script.
Joel
4th July 2003 19:13 UTC
Ok but how it'll be, more or less like this:
!Include "functions1.nsi"
Msgbox MB_OK $0 ; $0 Will be a text from a function in functions1.nsi
!Include "functions2.nsi"
Msgbox MB_OK $1 ; $1 Will be a text from a function in functions2.nsi
Mosestycoon
5th July 2003 21:01 UTC
thx!:up: