예제 #1
0
파일: perl.c 프로젝트: arminius2/apolloim
static gboolean
plugin_unload(PurplePlugin *plugin)
{
	perl_end();

	return TRUE;
}
예제 #2
0
int
xchat_plugin_deinit (xchat_plugin * plugin_handle)
{
	perl_end ();

	initialized = 0;
	xchat_print (plugin_handle, "Perl interface unloaded\n");

	return 1;
}
예제 #3
0
파일: perl.c 프로젝트: hananh/xchat-aqua
int
xchat_plugin_deinit (xchat_plugin * plugin_handle)
{
	if (reinit_tried) {
		reinit_tried--;
		return 1;
	}

	perl_end ();

	xchat_print (plugin_handle, "Perl interface unloaded\n");

	return 1;
}