NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
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
45struct Buffer;
46struct ConfigSubset;
47struct Email;
48
49/* flags for dlg_compose() */
50#define MUTT_COMPOSE_NOFREEHEADER (1 << 0)
51
52int dlg_compose(struct Email *e, struct Buffer *fcc, uint8_t flags, struct ConfigSubset *sub);
53
54#endif /* MUTT_COMPOSE_LIB_H */
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:305
String manipulation buffer.
Definition: buffer.h:36
A set of inherited config items.
Definition: subset.h:47
The envelope/body of an email.
Definition: email.h:39