diff plugins/autorecon.c @ 3802:9bcb42faccc0

[gaim-migrate @ 3945] Rewrote show_im_dialog and show_info_dialog. Ported to gtkspell2. Gtkspell2 is a library available from gtkspell.sf.net. It requires the pspell library. If you want the "highlight misspelled words" feature to work, you must have this library installed. If installed, configure will detect it and link against it. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sat, 26 Oct 2002 06:41:13 +0000
parents 9682c0e022c6
children 74d27aa5b686
line wrap: on
line diff
--- a/plugins/autorecon.c	Fri Oct 25 11:50:40 2002 +0000
+++ b/plugins/autorecon.c	Sat Oct 26 06:41:13 2002 +0000
@@ -41,6 +41,17 @@
  *  EXPORTED FUNCTIONS
  */
 
+struct gaim_plugin_description desc; 
+G_MODULE_EXPORT struct gaim_plugin_description *gaim_plugin_desc() {
+	desc.api_version = PLUGIN_API_VERSION;
+	desc.name = g_strdup("Autoreconnect");
+	desc.version = g_strdup(VERSION);
+	desc.description = g_strdup("When you are kicked offline, this reconnects you.");
+	desc.authors = g_strdup("Eric Warmenhoven &lt;eric@warmenhoven.org>");
+	desc.url = g_strdup(WEBSITE);
+	return &desc;
+}
+
 G_MODULE_EXPORT char *name() {
 	return "Auto Reconnect";
 }