Close a plugin file
PluginClose ( dllhandle )
| dllhandle | The handle of a dll, as returned by a previous call to PluginOpen. |
| Success: | Returns 1. |
| Failure: | Returns 0. |
#ignoreFunc PluginFunc1
Local $handle = PluginOpen("example.dll")
PluginFunc1(0.1, 0.2) ; will call the plugin function with 2 parameters
PluginClose($handle)