diff -r d734c112cec8 -r acce66c34dbd plugins/filectl.c --- a/plugins/filectl.c Wed Sep 25 14:27:18 2002 +0000 +++ b/plugins/filectl.c Thu Sep 26 07:37:52 2002 +0000 @@ -118,6 +118,17 @@ gtk_timeout_remove(check); } +struct gaim_plugin_description desc; +struct gaim_plugin_description *gaim_plugin_desc() { + desc.api_version = PLUGIN_API_VERSION; + desc.name = g_strdup("Gaim File Control"); + desc.version = g_strdup(VERSION); + desc.description = g_strdup("Allows you to control Gaim by entering commands in aa file."); + desc.authors = g_strdup("Eric Warmehoven <eric@warmenhoven.org>"); + desc.url = g_strdup(WEBSITE); + return &desc; +} + char *name() { return "Gaim File Control"; }