aboutsummaryrefslogtreecommitdiff
path: root/src/send_message.h
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-07-12 04:52:01 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-07-12 04:52:01 +0000
commitd5d2eac2da2157a8bbd188d9108e37b941b1bf1a (patch)
treea0149e9fdff7c114bd14eb8dab9e3aa9f415618d /src/send_message.h
parent1093df8f250e0b7e62bb2417d0163e36a8edb021 (diff)
refactored add-reply-or-forward-mark-after-sending.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1857 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/send_message.h')
-rw-r--r--src/send_message.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/send_message.h b/src/send_message.h
index 6c39bba6..e54dff8c 100644
--- a/src/send_message.h
+++ b/src/send_message.h
@@ -1,6 +1,6 @@
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2005 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2007 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
@@ -35,8 +35,8 @@ struct _QueueInfo
gchar *server;
GSList *to_list;
PrefsAccount *ac;
- MsgInfo *replyinfo;
- GSList *forward_mlist;
+ gchar *reply_target;
+ gchar *forward_targets;
FILE *fp;
};
@@ -53,4 +53,7 @@ gint send_message_queue_all (FolderItem *queue,
gboolean save_msgs,
gboolean filter_msgs);
+gint send_message_set_reply_flag (const gchar *reply_target);
+gint send_message_set_forward_flags (const gchar *forward_targets);
+
#endif /* __SEND_H__ */