NeoMutt  2025-12-11-435-g4ac674
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
lib.h
Go to the documentation of this file.
1
22
42
43#ifndef MUTT_COMPOSE_LIB_H
44#define MUTT_COMPOSE_LIB_H
45
46#include <stdint.h>
47
48struct Buffer;
49struct ConfigSubset;
50struct Email;
51struct SubMenu;
52
54#define MUTT_COMPOSE_NOFREEHEADER (1 << 0)
55
56void compose_init_keys(struct SubMenu *sm_generic);
57
58int dlg_compose(struct Email *e, struct Buffer *fcc, uint8_t flags, struct ConfigSubset *sub);
59
60#endif /* MUTT_COMPOSE_LIB_H */
void compose_init_keys(struct SubMenu *sm_generic)
Initialise the Compose Keybindings - Implements ::init_keys_api.
Definition functions.c:211
int dlg_compose(struct Email *e, struct Buffer *fcc, uint8_t flags, struct ConfigSubset *sub)
Allow the user to edit the message envelope -.
String manipulation buffer.
Definition buffer.h:36
A set of inherited config items.
Definition subset.h:46
The envelope/body of an email.
Definition email.h:39
Collection of related functions.
Definition menu.h:68