Member of the libraries class.
a = libisloaded(libname)
Checks if a shared library is loaded.
| Name | Description |
| libname | Specifies the name of the shared library you want to check. If you assigned an alias when you loaded the shared library, use the alias for libname. libname is a string. |
| Name | Description |
| a | Determines whether the shared library is loaded. This function returns 1 if the shared library is loaded. Otherwise, this function returns 0. |
Refer to the MathScript Shared Libraries.lvproj in the labview\examples\MathScript\MathScript Shared Libraries directory for examples of calling shared libraries from MathScript.
libisloaded('myD')
r = [labviewroot '\examples\MathScript\MathScript Shared Libraries']
loadlibrary('myDemo', 'demo', 'alias', 'myD', 'includepath', r)
libisloaded('myD')
unloadlibrary('myD')