Archive: Source code of NSIS


Source code of NSIS
Where can I find the source code of $HWNDPARENT, $TEMP, $EXEDIR, etc....?


I have no idea what you mean. These constants are totally different and are set in different places in the source code.


For example $TEMP. It come from some code, right?
I want to add more $ vars....


You can declare your own variables using the Var command.


I ment from the source code ;)


Why would you want to hard-code extra variables? You can always include a header file.


Build.cpp, search for TEMP, HWNDPARENT, etc. and go from there. exehead\Util.c, search for GetNSISString.


Thanks KichiK! :)