Imports a previously exported function into a VLX namespace
Supported Platforms: Windows only
(vl-doc-import application ['function ...])
Type: String
Name of the VLX application whose functions are to be imported. Do not include the .vlx extension in the name.
Type: Subroutine
One or more symbols naming functions to be imported. If no functions are specified, all functions exported by application will be imported.
Type: nil or error
nil if successful; otherwise an error occurs
This function can be used in a separate-namespace VLX to import a function that was previously exported from another VLX loaded from the same document.
The vl-doc-import function should be used only at the top level in a file, and never inside other forms (for example, not within a defun).
Import function ldataget from the ldatatest application:
(vl-doc-import "ldatatest" 'ldataget) nil