X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=attach.h;h=3bc1b8215dff191647303ce0c4a3df26811a8969;hp=b1e6eec139867c8b6730d5ec1b182604f87c0b25;hb=841a368ddea400022328f35dd8c7a3eb6f543892;hpb=cf69ddd650f124d3aed242285434ba2b97fb4b79;ds=sidebyside diff --git a/attach.h b/attach.h index b1e6eec..3bc1b82 100644 --- a/attach.h +++ b/attach.h @@ -6,8 +6,19 @@ * It's licensed under the GNU General Public License, * please see the file GPL in the top level source directory. */ +#ifndef _MUTT_ATTACH_H +#define _MUTT_ATTACH_H -/* common protos for compose / attach menus */ +#include "mutt_menu.h" + +typedef struct attachptr { + BODY *content; + int parent_type; + char *tree; + int level; + int num; + unsigned int unowned:1; /* don't unlink on detach */ +} ATTACHPTR; int mutt_tag_attach (MUTTMENU * menu, int n, int m); int mutt_attach_display_loop (MUTTMENU * menu, int op, FILE * fp, @@ -24,3 +35,21 @@ void mutt_attach_bounce (FILE *, HEADER *, ATTACHPTR **, short, BODY *); void mutt_attach_resend (FILE *, HEADER *, ATTACHPTR **, short, BODY *); void mutt_attach_forward (FILE *, HEADER *, ATTACHPTR **, short, BODY *, int); void mutt_attach_reply (FILE *, HEADER *, ATTACHPTR **, short, BODY *, int); + +ATTACHPTR **mutt_gen_attach_list (BODY *, int, ATTACHPTR **, short *, short *, + int, int); + +void mutt_update_tree (ATTACHPTR **, short); + +int mutt_print_attachment (FILE *, BODY *); +int mutt_decode_save_attachment (FILE *, BODY *, char *, int, int); +int mutt_save_attachment (FILE *, BODY *, char *, int, HEADER *); +int mutt_pipe_attachment (FILE *, BODY *, const char *, char *); +int mutt_view_attachment (FILE *, BODY *, int, HEADER *, ATTACHPTR **, short); +int mutt_is_autoview (BODY *, const char *); +void mutt_check_lookup_list (BODY *, char *, int); +int mutt_edit_attachment (BODY *); +int mutt_compose_attachment (BODY * a); +int mutt_get_tmp_attachment (BODY *); + +#endif /* !_MUTT_ATTACH_H */