NeoMutt  2024-03-23-147-g885fbc
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
attach_data.h
Go to the documentation of this file.
1
23#ifndef MUTT_COMPOSE_ATTACH_DATA_H
24#define MUTT_COMPOSE_ATTACH_DATA_H
25
26struct Email;
27struct Menu;
28
33{
34 struct AttachCtx *actx;
35 struct Menu *menu;
36};
37
38void attach_data_free(struct Menu *menu, void **ptr);
39struct ComposeAttachData *attach_data_new (struct Email *e);
40
41#endif /* MUTT_COMPOSE_ATTACH_DATA_H */
struct ComposeAttachData * attach_data_new(struct Email *e)
Create new Compose Attach Data.
Definition: attach_data.c:54
void attach_data_free(struct Menu *menu, void **ptr)
Free the Compose Attach Data - Implements Menu::mdata_free() -.
Definition: attach_data.c:37
A set of attachments.
Definition: attach.h:65
Data to fill the Compose Attach Window.
Definition: attach_data.h:33
struct Menu * menu
Menu displaying the attachments.
Definition: attach_data.h:35
struct AttachCtx * actx
Set of attachments.
Definition: attach_data.h:34
The envelope/body of an email.
Definition: email.h:39
Definition: lib.h:79