Further pop_mx_ng work
[apps/madmutt.git] / recvattach.h
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
4  *
5  * This file is part of mutt-ng, see http://www.muttng.org/.
6  * It's licensed under the GNU General Public License,
7  * please see the file GPL in the top level source directory.
8  */
9 #ifndef _MUTT_RECVATTACH_H
10 #define _MUTT_RECVATTACH_H
11
12 #include <lib-mime/mime-types.h>
13 #include <lib-ui/menu.h>
14
15 #include "mutt.h"
16 #include "attach.h"
17
18 void mutt_update_tree (ATTACHPTR **, short);
19
20 ATTACHPTR **mutt_gen_attach_list (BODY *, int, ATTACHPTR **, short *, short *,
21                                   int, int);
22
23 const char *mutt_attach_fmt (char *dest,
24                              ssize_t destlen,
25                              char op,
26                              const char *src,
27                              const char *prefix,
28                              const char *ifstr,
29                              const char *elstr,
30                              anytype data, format_flag flags);
31
32 int mutt_tag_attach (MUTTMENU * menu, int n, int m);
33
34 void mutt_save_attachment_list (FILE * fp, int tag, BODY * top, HEADER * hdr,
35                                 MUTTMENU * menu);
36
37 void mutt_pipe_attachment_list (FILE * fp, int tag, BODY * top, int filter);
38 void mutt_print_attachment_list (FILE * fp, int tag, BODY * top);
39
40 int mutt_attach_display_loop (MUTTMENU * menu, int op, FILE * fp,
41                               HEADER * hdr, BODY * cur, ATTACHPTR *** idxp,
42                               short *idxlen, short *idxmax, int recv);
43
44 void mutt_attach_init (BODY *);
45
46 void mutt_view_attachments (HEADER *);
47
48 #endif /* !_MUTT_RECVATTACH_H */