Function Reference

PluginClose

Close a plugin file

PluginClose ( dllhandle )

 

Parameters

dllhandle The handle of a dll, as returned by a previous call to PluginOpen.

 

Return Value

Success: Returns 1.
Failure: Returns 0.

 

Remarks

None.

 

Related

PluginOpen

 

Example


$handle = PluginOpen("example.dll")

PluginFunc1(0.1, 0.2)   ; will call the plugin function with  2 parameters

PluginClose($handle)