Added sections, functions, and labels. Now only instructions is left

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@970 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
rainwater 2002-09-10 12:05:31 +00:00
parent a2b932dbe8
commit beec5fe831
5 changed files with 76 additions and 3 deletions

9
Docs/src/functions.but Normal file
View file

@ -0,0 +1,9 @@
\H{functions} Functions
Functions are like similar to Sections in that they contain zero or more instructions. Functions are not called by the installer directly, instead they are called from Sections using the Call instruction (Note: there are some special Callback Functions that can be called by the installer directly).
\b Functions must be declared outside of Sections or other Functions.
\b Function names beginning with "." (e.g. ".Whatever") are generally reserved for callback functions.
\b Function names beginning with "un." are functions that will be generated in the Uninstaller. Hence, normal install Sections and functions cannot call uninstall functions, and the Uninstall Section and uninstall functions cannot call normal functions.