1 /**
2  * @file
3  * Send/reply with an attachment
4  *
5  * @authors
6  * Copyright (C) 1999-2004 Thomas Roessler <roessler@does-not-exist.org>
7  *
8  * @copyright
9  * This program is free software: you can redistribute it and/or modify it under
10  * the terms of the GNU General Public License as published by the Free Software
11  * Foundation, either version 2 of the License, or (at your option) any later
12  * version.
13  *
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  * details.
18  *
19  * You should have received a copy of the GNU General Public License along with
20  * this program.  If not, see <http://www.gnu.org/licenses/>.
21  */
22 
23 #ifndef MUTT_RECVCMD_H
24 #define MUTT_RECVCMD_H
25 
26 #include <stdio.h>
27 #include "send/lib.h"
28 
29 struct AttachCtx;
30 struct Body;
31 struct Email;
32 struct Mailbox;
33 
34 void mutt_attach_bounce(struct Mailbox *m, FILE *fp, struct AttachCtx *actx, struct Body *cur);
35 void mutt_attach_resend(FILE *fp, struct Mailbox *m, struct AttachCtx *actx, struct Body *cur);
36 void mutt_attach_forward(FILE *fp, struct Email *e, struct AttachCtx *actx, struct Body *cur, SendFlags flags);
37 void mutt_attach_reply(FILE *fp, struct Mailbox *m, struct Email *e, struct AttachCtx *actx, struct Body *e_cur, SendFlags flags);
38 void mutt_attach_mail_sender(struct AttachCtx *actx, struct Body *cur);
39 
40 #endif /* MUTT_RECVCMD_H */
41