NeoMutt
2023-03-22
Teaching an old dog new tricks
DOXYGEN
lib.h
Go to the documentation of this file.
1
40
#ifndef MUTT_COMPOSE_LIB_H
41
#define MUTT_COMPOSE_LIB_H
42
43
#include <stdint.h>
44
45
struct
Buffer
;
46
struct
ConfigSubset
;
47
struct
Email
;
48
49
/* flags for mutt_compose_menu() */
50
#define MUTT_COMPOSE_NOFREEHEADER (1 << 0)
51
52
int
mutt_compose_menu
(
struct
Email
*e,
struct
Buffer
*fcc, uint8_t flags,
struct
ConfigSubset
*sub);
53
54
#endif
/* MUTT_COMPOSE_LIB_H */
mutt_compose_menu
int mutt_compose_menu(struct Email *e, struct Buffer *fcc, uint8_t flags, struct ConfigSubset *sub)
Allow the user to edit the message envelope.
Definition:
compose.c:307
Buffer
String manipulation buffer.
Definition:
buffer.h:34
ConfigSubset
A set of inherited config items.
Definition:
subset.h:47
Email
The envelope/body of an email.
Definition:
email.h:37