get rid of eye-hurting function signatures :)
[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 gboolean my_log_hook(gpointer source, gpointer data)
26 {
27         LogText *logtext = (LogText *)source;
28
29         printf("*** Demo Plugin log: %s\n", logtext->text);
30
31         return FALSE;
32 }
33
34 static guint hook_id;
35
36 gint plugin_init(gchar **error)
37 {
38         hook_id = hooks_register_hook(LOG_APPEND_TEXT_HOOKLIST, my_log_hook, NULL);
39         if (hook_id == -1) {
40                 *error = g_strdup("Failed to register log text hook");
41                 return -1;
42         }
43
44         printf("Demo plugin loaded\n");
45
46         return 0;
47 }
48
49 void plugin_done()
50 {
51         hooks_unregister_hook(LOG_APPEND_TEXT_HOOKLIST, hook_id);
52
53         printf("Demo plugin unloaded\n");
54 }
55
56 const gchar *plugin_name(void)
57 {
58         return "Demo";
59 }
60
61 const gchar *plugin_desc(void)
62 {
63         return "This Plugin is only a demo of how to write plugins for Sylpheed. "
64                "It installs a hook for new log output and writes it to stdout."
65                "\n\n"
66                "It is not really usefull";
67 }
68
69 const gchar *plugin_type(void)
70 {
71         return "Common";
72 }