Name
ClosePlugin -- close plugin (V5.0)
Synopsis
void ClosePlugin(void);
Function
This function must free all resources allocated by the plugin. ClosePlugin() will be the final call Hollywood makes to your plugin. After that the plugin will be expunged from memory.

Important: Be very careful about the plugin API functions that you call here because ClosePlugin() can also be called by Hollywood versions that are older than the one you requested in your InitPlugin() implementation. See InitPlugin for a detailed description of this issue.

Inputs
none


Show TOC