NeoMutt
2021-02-05-89-gabe350
Teaching an old dog new tricks
DOXYGEN
lib.h
Go to the documentation of this file.
1
34
#ifndef MUTT_COMPOSE_LIB_H
35
#define MUTT_COMPOSE_LIB_H
36
37
#include <stdint.h>
38
39
struct
Buffer
;
40
struct
Email
;
41
42
/* flags for mutt_compose_menu() */
43
#define MUTT_COMPOSE_NOFREEHEADER (1 << 0)
44
45
int
mutt_compose_menu
(
struct
Email
*e,
struct
Buffer
*fcc,
struct
Email
*e_cur, uint8_t flags,
struct
ConfigSubset
*sub);
46
47
#endif
/* MUTT_COMPOSE_LIB_H */
Buffer
String manipulation buffer.
Definition:
buffer.h:33
mutt_compose_menu
int mutt_compose_menu(struct Email *e, struct Buffer *fcc, struct Email *e_cur, uint8_t flags, struct ConfigSubset *sub)
Allow the user to edit the message envelope.
Definition:
compose.c:1474
ConfigSubset
A set of inherited config items.
Definition:
subset.h:46
Email
The envelope/body of an email.
Definition:
email.h:37