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
35
36#ifndef MUTT_ENVELOPE_LIB_H
37#define MUTT_ENVELOPE_LIB_H
38
39
40struct Buffer;
41struct ConfigSubset;
42struct Email;
43struct KeyEvent;
44struct MuttWindow;
45
46struct MuttWindow *env_window_new(struct Email *e, struct Buffer *fcc, struct ConfigSubset *sub);
47int env_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event);
48
49#endif /* MUTT_ENVELOPE_LIB_H */
struct MuttWindow * env_window_new(struct Email *e, struct Buffer *fcc, struct ConfigSubset *sub)
Create the Envelope Window.
Definition window.c:946
int env_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event)
Perform an Envelope function - Implements function_dispatcher_t -.
Definition functions.c:536
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
An event such as a keypress.
Definition get.h:50