Function prototype for the plugin cleanup function.
This function is called by the loader, before unloading the plugin.
The plugin should implement this to remove any state added to VRTree during any other plugin functions.
- Returns
0 for success (not currently used)
- Example
PLUGIN_ENTRY_POINT int VRTREE_APIENTRY VRPCleanup()
{
return 0; //success
}