plugins/idle.c

changeset 11033
dc68e074f10d
parent 9943
b54a762f60fa
child 11256
fe82a0c5e5ec
equal deleted inserted replaced
11032:8cebd16548eb 11033:dc68e074f10d
81 l = g_list_append(l, act); 81 l = g_list_append(l, act);
82 82
83 return l; 83 return l;
84 } 84 }
85 85
86 static gboolean
87 plugin_load(GaimPlugin *plugin)
88 {
89 gaim_debug_register_category("idle");
90
91 return TRUE;
92 }
93
94 static gboolean
95 plugin_unload(GaimPlugin *plugin)
96 {
97 gaim_debug_unregister_category("idle");
98
99 return TRUE;
100 }
86 101
87 static GaimPluginInfo info = 102 static GaimPluginInfo info =
88 { 103 {
89 GAIM_PLUGIN_MAGIC, 104 GAIM_PLUGIN_MAGIC,
90 GAIM_MAJOR_VERSION, 105 GAIM_MAJOR_VERSION,
99 VERSION, 114 VERSION,
100 N_("Allows you to hand-configure how long you've been idle for"), 115 N_("Allows you to hand-configure how long you've been idle for"),
101 N_("Allows you to hand-configure how long you've been idle for"), 116 N_("Allows you to hand-configure how long you've been idle for"),
102 "Eric Warmenhoven <eric@warmenhoven.org>", 117 "Eric Warmenhoven <eric@warmenhoven.org>",
103 GAIM_WEBSITE, 118 GAIM_WEBSITE,
104 NULL, 119 plugin_load,
105 NULL, 120 plugin_unload,
106 NULL, 121 NULL,
107 NULL, 122 NULL,
108 NULL, 123 NULL,
109 NULL, 124 NULL,
110 actions 125 actions

mercurial