extract_as macro

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2043 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
joostverburg 2003-01-08 15:24:31 +00:00
parent 7a20b614f9
commit d2eb8c725d

View file

@ -336,6 +336,15 @@ Function .onInit
!insertmacro MUI_INSTALLOPTIONS_EXTRACT "ioFile.ini"
FunctionEnd
</pre>
<p class="text">If your INI File is located in another directory, use
MUI_INSTALLOPTIONS_EXTRACT_AS. The second parameter is the filename for
the Plugins directory. Use this name when inserting the other InstallOptions
macro's:</p>
<pre class="margin">
Function .onInit
!insertmacro MUI_INSTALLOPTIONS_EXTRACT_AS "..\ioFile.ini" "ioFile.ini"
FunctionEnd
</pre>
<p class="text">You can call Install Options in the function defined with the Page
or UninstPage command:</p>
<pre class="margin">