NeoMutt  2025-12-11-911-gd8d604
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 NeoMutt;
52struct SubMenu;
53
55#define MUTT_COMPOSE_NOFREEHEADER (1 << 0)
56
57void compose_init_keys(struct NeoMutt *n, struct SubMenu *sm_generic);
58
59int dlg_compose(struct Email *e, struct Buffer *fcc, uint8_t flags, struct ConfigSubset *sub);
60
61#endif /* MUTT_COMPOSE_LIB_H */
void compose_init_keys(struct NeoMutt *n, struct SubMenu *sm_generic)
Initialise the Compose Keybindings - Implements ::init_keys_api.
Definition functions.c:209
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
Container for Accounts, Notifications.
Definition neomutt.h:41
Collection of related functions.
Definition menu.h:65