view plugins/perl/libgaimperl.c @ 12075:f62022e07351

[gaim-migrate @ 14372] another docklet patch from sadrul - this one fixes the scrollwheel behavior in the status message box so that it doesn't change your status. committer: Tailor Script <tailor@pidgin.im>
author Daniel Atallah <daniel.atallah@gmail.com>
date Mon, 14 Nov 2005 01:23:36 +0000
parents f8cd06753755
children a4229dd9c76a
line wrap: on
line source

#include <gmodule.h>
void __attribute__ ((constructor)) my_init(void) {
	/* Very evil hack...puts perl.so's symbols in the global table 		*/
	/* but does not create a circular dependancy because g_module_open	*/
	/* will only open the library once.					*/
	g_module_open("perl.so", 0);
}