diff -r d734c112cec8 -r acce66c34dbd plugins/error.c --- a/plugins/error.c Wed Sep 25 14:27:18 2002 +0000 +++ b/plugins/error.c Thu Sep 26 07:37:52 2002 +0000 @@ -37,6 +37,17 @@ } } +struct gaim_plugin_description desc; +struct gaim_plugin_description *gaim_plugin_desc() { + desc.api_version = PLUGIN_API_VERSION; + desc.name = g_strdup("Error Tester"); + desc.version = g_strdup(VERSION); + desc.description = g_strdup("A plugin that causes error messages."); + desc.authors = g_strdup("Eric Warmehoven <eric@warmenhoven.org>"); + desc.url = g_strdup(WEBSITE); + return &desc; +} + char *name() { return "Error Tester " VERSION ; }