diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/libsylpheed-plugin-0.def | 12 | ||||
-rw-r--r-- | src/plugin.h | 2 |
3 files changed, 19 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2016-07-07 + + * src/plugin.h: add two more functions. + * src/libsylpheed-plugin-0.def: updated. + 2016-06-17 * src/main.c diff --git a/src/libsylpheed-plugin-0.def b/src/libsylpheed-plugin-0.def index aa0a94f5..95642c04 100644 --- a/src/libsylpheed-plugin-0.def +++ b/src/libsylpheed-plugin-0.def @@ -100,3 +100,15 @@ EXPORTS syl_plugin_update_check_set_download_url @ 99
syl_plugin_update_check_set_jump_plugin_url @ 100
syl_plugin_update_check_set_jump_url @ 101
+ syl_plugin_compose_attach_append @ 102
+ syl_plugin_compose_attach_remove_all @ 103
+ syl_plugin_compose_forward @ 104
+ syl_plugin_compose_get_misc_hbox @ 105
+ syl_plugin_compose_get_textview @ 106
+ syl_plugin_compose_get_toolbar @ 107
+ syl_plugin_compose_redirect @ 108
+ syl_plugin_compose_reedit @ 109
+ syl_plugin_compose_reply @ 110
+ syl_plugin_compose_send @ 111
+ syl_plugin_get_attach_list @ 112
+ syl_plugin_main_window_get_toolbar @ 113
diff --git a/src/plugin.h b/src/plugin.h index b7cb230b..7d988309 100644 --- a/src/plugin.h +++ b/src/plugin.h @@ -280,6 +280,8 @@ void syl_plugin_compose_lock (gpointer compose); void syl_plugin_compose_unlock (gpointer compose); GtkWidget *syl_plugin_compose_get_toolbar (gpointer compose); +GtkWidget *syl_plugin_compose_get_misc_hbox (gpointer compose); +GtkWidget *syl_plugin_compose_get_textview (gpointer compose); gint syl_plugin_compose_send (gpointer compose, gboolean close_on_success); |