From 03ba89e1b7fb21bce1025a44d1cc4b683c982209 Mon Sep 17 00:00:00 2001 From: kichik Date: Mon, 24 Jul 2006 20:09:39 +0000 Subject: [PATCH] typo git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4709 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/System/System.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Contrib/System/System.html b/Contrib/System/System.html index cc9f661a..e902e043 100644 --- a/Contrib/System/System.html +++ b/Contrib/System/System.html @@ -165,7 +165,7 @@ DetailPrint $4

Call and get both share a common syntax. As the names suggest, Call calls and Get gets. What does it call or get? It depends on PROC's value.

-

PARAMS is a list of parameters and what do to with them. You can pass data in the parameters and you can also get data from them. The parameters list is separated by commas. Each parameter is combined of three values: type, source and destination. Type can be an integer, a string, etc. Source, which is the source of the parameter value, can be a NSIS register ($0, $1, $INSTDIR), the NSIS stack, a concrete value (5, "test", etc.) or nothing (null). Destination, which is the destination of the parameter value after the call returns, can can be a NSIS register, the NSIS stack or nothing which means no output is required. Either one of source or destination can also be a dot (`.') if it is not needed.

+

PARAMS is a list of parameters and what do to with them. You can pass data in the parameters and you can also get data from them. The parameters list is separated by commas. Each parameter is combined of three values: type, source and destination. Type can be an integer, a string, etc. Source, which is the source of the parameter value, can be a NSIS register ($0, $1, $INSTDIR), the NSIS stack, a concrete value (5, "test", etc.) or nothing (null). Destination, which is the destination of the parameter value after the call returns, can be a NSIS register, the NSIS stack or nothing which means no output is required. Either one of source or destination can also be a dot (`.') if it is not needed.

RETURN is like a single parameter definition, but source is only used when creating callback functions. Normally source is a dot.