diff plugins/spellchk.c @ 1047:ece2d1543b20

[gaim-migrate @ 1057] Plugins now use GModule. Protocol plugins can be dynamically updated. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 01 Nov 2000 22:30:36 +0000
parents 91b7377e7b45
children efcacae6acdb
line wrap: on
line diff
--- a/plugins/spellchk.c	Wed Nov 01 11:34:56 2000 +0000
+++ b/plugins/spellchk.c	Wed Nov 01 22:30:36 2000 +0000
@@ -136,11 +136,12 @@
 	free(ibuf);
 }
 
-void gaim_plugin_init(void *handle) {
+char *gaim_plugin_init(GModule *handle) {
 	load_conf();
 
 	gaim_signal_connect(handle, event_im_send, substitute_words, NULL);
 	gaim_signal_connect(handle, event_chat_send, substitute_words, NULL);
+	return NULL;
 }
 
 void gaim_plugin_remove() {