![]() Using Multiple User DLLs |
![]() Virtual Machine |
![]() |
You can use up to four different DLLs by setting the prolink environment variable to a list of DLLs in the following way:
prolink= DLL-module1{,DLL-moduleN...}
where DLL-moduleN is the name of the module including path name.
For example, prolink = extsub.dll,c:\image\imageman.dll declares modules 'extsub' and 'imageman'.
To invoke a subroutine, you need to specify the DLL module in which it resides. Do this by prefixing the subroutine name with the module name as follows:
LINK (module-name.sub-name{,arguments}) or
LINK-CRT (module-name.sub-name{,arguments})
where module-name is the case insensitive base name of the DLL file, without file extension or path specifier.
All commands are passed to the first module loaded, unless otherwise specified.
Topic ID: 750065