NeoMutt
2024-10-02-37-gfa9146
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
26
struct
Email
;
27
struct
Menu
;
28
32
struct
ComposeAttachData
33
{
34
struct
AttachCtx
*
actx
;
35
struct
Menu
*
menu
;
36
};
37
38
void
attach_data_free
(
struct
Menu
*menu,
void
**ptr);
39
struct
ComposeAttachData
*
attach_data_new
(
struct
Email
*e);
40
41
#endif
/* MUTT_COMPOSE_ATTACH_DATA_H */
attach_data_new
struct ComposeAttachData * attach_data_new(struct Email *e)
Create new Compose Attach Data.
Definition:
attach_data.c:54
attach_data_free
void attach_data_free(struct Menu *menu, void **ptr)
Free the Compose Attach Data - Implements Menu::mdata_free() -.
Definition:
attach_data.c:37
AttachCtx
A set of attachments.
Definition:
attach.h:65
ComposeAttachData
Data to fill the Compose Attach Window.
Definition:
attach_data.h:33
ComposeAttachData::menu
struct Menu * menu
Menu displaying the attachments.
Definition:
attach_data.h:35
ComposeAttachData::actx
struct AttachCtx * actx
Set of attachments.
Definition:
attach_data.h:34
Email
The envelope/body of an email.
Definition:
email.h:39
Menu
Definition:
lib.h:79