Example #1
0
DLL_EXPORT bool plugstop()
{
    // Clear the menu
    _plugin_menuclear(g_MenuHandle);

    // Remove callbacks
    _plugin_unregistercallback(g_PluginHandle, CB_MENUENTRY);

    // Free resources
    term();
    return true;
}
Example #2
0
DLL_EXPORT bool plugstop()
{
	// Close dialogs
	DestroySigMakeDialog();
	DestroySettingsDialog();

	// Clear the menu
	_plugin_menuclear(g_MenuHandle);

	// Remove callbacks
	_plugin_unregistercallback(g_PluginHandle, CB_MENUENTRY);
	return true;
}