2006-02-16 [cleroy] 2.0.0cvs59
[claws.git] / src / common / plugin.h
index 0b1d636696d3378909fa44e06d535e3ebd3d572a..9d0869092816e039a52ddcf1e94ad61d99cb03b7 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2002 Hiroyuki Yamamoto and the Sylpheed-Claws Team
+ * Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Sylpheed-Claws Team
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -14,7 +14,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #ifndef PLUGIN_H
@@ -29,17 +29,20 @@ gint plugin_init            (gchar          **error);
 void plugin_done               (void);
 const gchar *plugin_name       (void);
 const gchar *plugin_desc       (void);
+const gchar *plugin_version    (void);
 
 /* Functions by the sylpheed plugin system */
-gint plugin_load               (const gchar     *filename,
+Plugin *plugin_load            (const gchar     *filename,
                                 gchar          **error);
 void plugin_unload             (Plugin          *plugin);
-void plugin_load_all           (gchar          *type);
-void plugin_unload_all         (gchar          *type);
+void plugin_load_all           (const gchar     *type);
+void plugin_unload_all         (const gchar     *type);
 void plugin_save_list          (void);
 
 GSList *plugin_get_list                (void);
+GSList *plugin_get_unloaded_list(void);
 const gchar *plugin_get_name   (Plugin          *plugin);
 const gchar *plugin_get_desc   (Plugin          *plugin);
-
+const gchar *plugin_get_version        (Plugin          *plugin);
+const gchar *plugin_get_error  (Plugin          *plugin);
 #endif