comparison 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
comparison
equal deleted inserted replaced
3801:8cc3d7526043 3802:9bcb42faccc0
39 39
40 /* 40 /*
41 * EXPORTED FUNCTIONS 41 * EXPORTED FUNCTIONS
42 */ 42 */
43 43
44 struct gaim_plugin_description desc;
45 G_MODULE_EXPORT struct gaim_plugin_description *gaim_plugin_desc() {
46 desc.api_version = PLUGIN_API_VERSION;
47 desc.name = g_strdup("Autoreconnect");
48 desc.version = g_strdup(VERSION);
49 desc.description = g_strdup("When you are kicked offline, this reconnects you.");
50 desc.authors = g_strdup("Eric Warmenhoven &lt;eric@warmenhoven.org>");
51 desc.url = g_strdup(WEBSITE);
52 return &desc;
53 }
54
44 G_MODULE_EXPORT char *name() { 55 G_MODULE_EXPORT char *name() {
45 return "Auto Reconnect"; 56 return "Auto Reconnect";
46 } 57 }
47 58
48 G_MODULE_EXPORT char *description() { 59 G_MODULE_EXPORT char *description() {