X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=attach.h;h=9d55056629eaf244c4b70f5bd12975f2b584684c;hp=e7b551316af38429c34219fcf5e7f93f42e8bcae;hb=6920eb5798f2d9f25e5ea1af2ba86122cf408bd1;hpb=df70e07e24add1869bcc9b7af2277d9d0c09a281 diff --git a/attach.h b/attach.h index e7b5513..9d55056 100644 --- a/attach.h +++ b/attach.h @@ -1,35 +1,43 @@ /* + * Copyright notice from original mutt: * Copyright (C) 1996-2000 Michael R. Elkins - * - * 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 - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * + * This file is part of mutt-ng, see http://www.muttng.org/. + * 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 -int mutt_tag_attach (MUTTMENU * menu, int n, int m); -int mutt_attach_display_loop (MUTTMENU * menu, int op, FILE * fp, - HEADER * hdr, BODY * cur, ATTACHPTR *** idxp, - short *idxlen, short *idxmax, int recv); - - -void mutt_save_attachment_list (FILE * fp, int tag, BODY * top, HEADER * hdr, - MUTTMENU * menu); -void mutt_pipe_attachment_list (FILE * fp, int tag, BODY * top, int filter); -void mutt_print_attachment_list (FILE * fp, int tag, BODY * top); +typedef struct attachptr { + BODY *content; + int parent_type; + char *tree; + int level; + int num; + unsigned int unowned:1; /* don't unlink on detach */ +} ATTACHPTR; 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); + +int mutt_print_attachment (FILE *, BODY *); +int mutt_decode_save_attachment (FILE *, BODY *, int, int); +int mutt_save_attachment (FILE *, BODY *, char *, int, HEADER *); +int mutt_pipe_attachment (FILE *, BODY *, const char *, int); +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 *); + +/* this checks whether at least one text line matches + * AttachRemindRegexp and returns 1 if so and 0 otherwise */ +int mutt_attach_check (HEADER* hdr); + +#endif /* !_MUTT_ATTACH_H */