]> git.decadent.org.uk Git - ion3-doc.git/blobdiff - ionnotes/node4.html
[svn-upgrade] Integrating new upstream version, ion3-doc (20080207)
[ion3-doc.git] / ionnotes / node4.html
index 02ad0364681f411e7a6419524d3a37d63dce00f8..b97a875387b3b948c0aca833636d2b4962c17cc1 100644 (file)
@@ -126,11 +126,11 @@ C side of Ion and Lua:
 <TD ALIGN="LEFT">&nbsp;</TD>
 </TR>
 <TR><TD ALIGN="RIGHT">t</TD>
-<TD ALIGN="LEFT">ExtlTab<A NAME="517"></A></TD>
+<TD ALIGN="LEFT">ExtlTab<A NAME="531"></A></TD>
 <TD ALIGN="LEFT">Reference to Lua table</TD>
 </TR>
 <TR><TD ALIGN="RIGHT">f</TD>
-<TD ALIGN="LEFT">ExltFn<A NAME="518"></A></TD>
+<TD ALIGN="LEFT">ExltFn<A NAME="532"></A></TD>
 <TD ALIGN="LEFT">Reference to Lua function.</TD>
 </TR>
 <TR><TD ALIGN="RIGHT">o</TD>
@@ -195,7 +195,7 @@ initialisation and deinitialisation code.
 
 <P>
 You've seen the terms level 1 and 2 call handler mentioned above. 
-<A NAME="487"></A>
+<A NAME="501"></A>
 The Lua support code uses two so called call handlers to convert and check
 the types of parameters passed from Lua to C and back to Lua. The first
 one of these call handlers is the same for all exported functions and
@@ -230,10 +230,10 @@ supported by the generated L2 call handlers).
 
 <P>
 The functions
-<TT>extl_call</TT><A NAME="511"></A>,
-<TT>extl_call_named</TT><A NAME="512"></A>,
-<TT>extl_dofile</TT><A NAME="513"></A> and
-<TT>extl_dostring</TT><A NAME="514"></A>
+<TT>extl_call</TT><A NAME="525"></A>,
+<TT>extl_call_named</TT><A NAME="526"></A>,
+<TT>extl_dofile</TT><A NAME="527"></A> and
+<TT>extl_dostring</TT><A NAME="528"></A>
 call a referenced function (ExtlFn), named function, execute a
 string and a file, respectively. The rest of the parameters for all these
 functions are similar. The 'spec' argument is a string of identifier
@@ -249,7 +249,7 @@ passing succeeded or not.
 <P>
 Sometimes it is necessary to block calls to all but a limited set of
 Ion functions. This can be accomplished with
-<TT>extl_set_safelist</TT><A NAME="515"></A>.
+<TT>extl_set_safelist</TT><A NAME="529"></A>.
 The parameter to this function is a NULL-terminated array of strings
 and the return value is a similar old safelist.
 The call <TT>extl_set_safelist(NULL)</TT> removes any safelist and allows
@@ -263,7 +263,7 @@ calls to all exported functions.
 
 <P>
 Configuration files should be read as before with the function
-<TT>read_config_for</TT><A NAME="516"></A>
+<TT>read_config_for</TT><A NAME="530"></A>
 except that the list of known options is no longer present.
 
 <P>