callInitProc
callInitProc(t_contextName) =>t
Description
Calls all the initialization functions associated with a context.
Takes the same argument as loadContext (but without the .cxt extension) and causes all the initialization functions associated with the given context to be called. This function need not be used if the loading of the context is happening through the autoload mechanism. Use this function only when calling loadContext manually.
Arguments
Value Returned
Examples
All functions defined through defInitProc and defUserInitProc are called.
loadContext("myContext.cxt")
=> t
callInitProc("myContext")
=> t
Related Topics
Return to top