Commit 25a11a05 25a11a05b1e1eba6772b751e499205214c727cac by Sergey Poznyakoff

(_amd_data.msg_finish_delivery): Pass original message as the 3rd argument.

1 parent 6b5d5c5e
...@@ -65,7 +65,8 @@ struct _amd_data ...@@ -65,7 +65,8 @@ struct _amd_data
65 size_t msg_size; /* Size of struct _amd_message */ 65 size_t msg_size; /* Size of struct _amd_message */
66 int (*create) (struct _amd_data *, int flags); 66 int (*create) (struct _amd_data *, int flags);
67 int (*msg_init_delivery) (struct _amd_data *, struct _amd_message *); 67 int (*msg_init_delivery) (struct _amd_data *, struct _amd_message *);
68 int (*msg_finish_delivery) (struct _amd_data *, struct _amd_message *); 68 int (*msg_finish_delivery) (struct _amd_data *, struct _amd_message *,
69 const mu_message_t);
69 void (*msg_free) (struct _amd_message *); 70 void (*msg_free) (struct _amd_message *);
70 int (*cur_msg_file_name) (struct _amd_message *, char **); 71 int (*cur_msg_file_name) (struct _amd_message *, char **);
71 int (*new_msg_file_name) (struct _amd_message *, int attr_flags, char **); 72 int (*new_msg_file_name) (struct _amd_message *, int attr_flags, char **);
......