aboutsummaryrefslogtreecommitdiff
path: root/src/plugin.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2016-06-17 08:56:07 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2016-06-17 08:56:07 +0000
commit746b9ad1a5dec77269d6e66ecccef0d144f78ebe (patch)
tree67cc361ac88b0bd0f8e7d7e0d9eb678fb7d23205 /src/plugin.c
parent6bce1bd247197a3546c47f84d5f87faa47a68924 (diff)
added new plug-in function and added plugin-types.h.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3515 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/plugin.c')
-rw-r--r--src/plugin.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/plugin.c b/src/plugin.c
index 76134752..725495b7 100644
--- a/src/plugin.c
+++ b/src/plugin.c
@@ -1222,6 +1222,14 @@ void syl_plugin_compose_attach_remove_all(gpointer compose)
SAFE_CALL_ARG1(func, compose);
}
+GSList *syl_plugin_get_attach_list(gpointer compose)
+{
+ GSList * (*func)(gpointer);
+
+ GETFUNC("compose_get_attach_list");
+ return SAFE_CALL_ARG1_RET(func, compose);
+}
+
FolderItem *syl_plugin_folder_sel(Folder *cur_folder, gint sel_type,
const gchar *default_folder)