NeoMutt
2024-12-12-14-g7b49f7
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
lib.h
Go to the documentation of this file.
1
42
#ifndef MUTT_COMPOSE_LIB_H
43
#define MUTT_COMPOSE_LIB_H
44
45
#include <stdint.h>
46
47
struct
Buffer
;
48
struct
ConfigSubset
;
49
struct
Email
;
50
51
/* flags for dlg_compose() */
52
#define MUTT_COMPOSE_NOFREEHEADER (1 << 0)
53
54
int
dlg_compose
(
struct
Email
*e,
struct
Buffer
*fcc, uint8_t flags,
struct
ConfigSubset
*sub);
55
56
#endif
/* MUTT_COMPOSE_LIB_H */
dlg_compose
int dlg_compose(struct Email *e, struct Buffer *fcc, uint8_t flags, struct ConfigSubset *sub)
Allow the user to edit the message envelope -.
Definition:
dlg_compose.c:403
Buffer
String manipulation buffer.
Definition:
buffer.h:36
ConfigSubset
A set of inherited config items.
Definition:
subset.h:47
Email
The envelope/body of an email.
Definition:
email.h:39