NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
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
48
struct
Buffer
;
49
struct
ConfigSubset
;
50
struct
Email
;
51
struct
NeoMutt
;
52
struct
SubMenu
;
53
55
#define MUTT_COMPOSE_NOFREEHEADER (1 << 0)
56
57
void
compose_init_keys
(
struct
NeoMutt
*n,
struct
SubMenu
*sm_generic);
58
59
int
dlg_compose
(
struct
Email
*e,
struct
Buffer
*fcc, uint8_t flags,
struct
ConfigSubset
*sub);
60
61
#endif
/* MUTT_COMPOSE_LIB_H */
compose_init_keys
void compose_init_keys(struct NeoMutt *n, struct SubMenu *sm_generic)
Initialise the Compose Keybindings - Implements init_keys_api.
Definition
functions.c:213
dlg_compose
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:412
Buffer
String manipulation buffer.
Definition
buffer.h:36
ConfigSubset
A set of inherited config items.
Definition
subset.h:46
Email
The envelope/body of an email.
Definition
email.h:39
NeoMutt
Container for Accounts, Notifications.
Definition
neomutt.h:41
SubMenu
Collection of related functions.
Definition
menudef.h:33