aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2016-06-17 06:15:05 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2016-06-17 06:15:05 +0000
commita9aa586275af6874258d346a88c6147495a0b8c0 (patch)
treed4d3249648cfa9f4678524e2b24aa8e376afecfc /src/main.c
parentd81f66866effd5f0795601fa58a88e40565bfa21 (diff)
added new plug-in APIs.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3511 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index c4909b32..63a90b81 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,6 +1,6 @@
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2014 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2016 Hiroyuki Yamamoto
*
* 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
@@ -1355,6 +1355,7 @@ static void plugin_init(void)
syl_plugin_add_symbol("main_window_menu_factory",
mainwin->menu_factory);
+ syl_plugin_add_symbol("main_window_toolbar", mainwin->toolbar);
syl_plugin_add_symbol("main_window_statusbar", mainwin->statusbar);
ADD_SYM(folderview_get);
@@ -1407,11 +1408,21 @@ static void plugin_init(void)
ADD_SYM(messageview_show);
ADD_SYM(compose_new);
+ ADD_SYM(compose_reply);
+ ADD_SYM(compose_forward);
+ ADD_SYM(compose_redirect);
+ ADD_SYM(compose_reedit);
ADD_SYM(compose_entry_set);
ADD_SYM(compose_entry_append);
ADD_SYM(compose_entry_get_text);
ADD_SYM(compose_lock);
ADD_SYM(compose_unlock);
+ ADD_SYM(compose_get_toolbar);
+ ADD_SYM(compose_get_misc_hbox);
+ ADD_SYM(compose_get_textview);
+ ADD_SYM(compose_attach_append);
+ ADD_SYM(compose_attach_remove_all);
+ ADD_SYM(compose_send);
ADD_SYM(foldersel_folder_sel);
ADD_SYM(foldersel_folder_sel_full);