Warning: This feature is experimental. It may not work, may contain bugs or may be changed or removed without notice.

DO NOT REPORT BUGS OR REQUEST NEW FEATURES FOR THIS FEATURE.

USE AT YOUR OWN RISK.

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


#ignoreFunc PluginFunc1
Local $handle = PluginOpen("example.dll")

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

PluginClose($handle)