0.8.8claws2
[claws.git] / src / plugins / demo / demo.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2002 Hiroyuki Yamamoto and the Sylpheed-Claws Team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #include "plugin.h"
21 #include "utils.h"
22 #include "hooks.h"
23 #include "log.h"
24
25 gchar *plugin_name = "Dummy plugin";
26 gchar *plugin_desc = "Plugin that does nothing and never loads";
27
28 gboolean my_log_hook(gpointer source, gpointer data)
29 {
30         LogText *logtext = (LogText *)source;
31
32         printf("*** Demo Plugin log: %s\n", logtext->text);
33
34         return FALSE;
35 }
36
37 static guint hook_id;
38
39 gint plugin_init(gchar **error)
40 {
41         hook_id = hooks_register_hook(LOG_APPEND_TEXT_HOOKLIST, my_log_hook, NULL);
42         if (hook_id == -1) {
43                 *error = g_strdup("Failed to register log text hook");
44                 return -1;
45         }
46
47         printf("Demo plugin loaded\n");
48
49         return 0;
50 }
51
52 void plugin_done()
53 {
54         hooks_unregister_hook(LOG_APPEND_TEXT_HOOKLIST, hook_id);
55
56         printf("Demo plugin unloaded\n");
57 }