Mercurial > pidgin
view plugins/simple.c @ 8998:3738d1eac0ad
[gaim-migrate @ 9773]
" This patch completes the removal of the Show
joins/leaves in chats preferences
It also (temporarily?) brings back the UI for the
IM/Chat buttons preferences by changing #if 0 to #if 1
so they're still easy to identify to revist later on.
The "Individual log file for each buddy's signons" pref
became obsolete a while ago and was incorrectly #if'd
out with a prefslash04 label. This patch completes it's
death.
With this patch applied the only prefslash thing that
should block release is the custom font/color/size/etc
stuff, I think we need to work out what to do there.
There's a bit of whitespace cleanup too." --Stu Tomlinson
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Fri, 21 May 2004 14:26:31 +0000 |
parents | 294ae6548d4e |
children | a9fb4493ae22 |
line wrap: on
line source
#include "internal.h" #include "debug.h" #include "plugin.h" static gboolean plugin_load(GaimPlugin *plugin) { gaim_debug(GAIM_DEBUG_INFO, "simple", "simple plugin loaded.\n"); return TRUE; } static gboolean plugin_unload(GaimPlugin *plugin) { gaim_debug(GAIM_DEBUG_INFO, "simple", "simple plugin unloaded.\n"); return TRUE; } static GaimPluginInfo info = { GAIM_PLUGIN_API_VERSION, /**< api_version */ GAIM_PLUGIN_STANDARD, /**< type */ NULL, /**< ui_requirement */ 0, /**< flags */ NULL, /**< dependencies */ GAIM_PRIORITY_DEFAULT, /**< priority */ NULL, /**< id */ N_("Simple Plugin"), /**< name */ VERSION, /**< version */ /** summary */ N_("Tests to see that most things are working."), /** description */ N_("Tests to see that most things are working."), "Eric Warmenhoven <eric@warmenhoven.org>", /**< author */ GAIM_WEBSITE, /**< homepage */ plugin_load, /**< load */ plugin_unload, /**< unload */ NULL, /**< destroy */ NULL, /**< ui_info */ NULL, /**< extra_info */ NULL, NULL }; static void init_plugin(GaimPlugin *plugin) { } GAIM_INIT_PLUGIN(simple, init_plugin, info)