callFunction()
callFunction( EFSName, FunctionName, [Parameters...])
- EFSName: Name of the physical EFS file that contains the function to be called.
- FunctionName: Name of the function within this EFS file that you want to call.
- Parameters: Any parameters that need to be passed to this function.
callFunction() is used to call a specific function inside of a different EFS file.
Example:
nValue = callFunction("MyNewEFS.efs", "calcMyValue", open(), close() );
Here is a link to a thread (by Alexis Montenegro) on the eSignal Forum that discusses the usage of the call() and callFunction():