NeoMutt  2025-09-05-43-g177ed6
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
lib.h
Go to the documentation of this file.
1
22
34
35#ifndef MUTT_ENVELOPE_LIB_H
36#define MUTT_ENVELOPE_LIB_H
37
38#include "config.h"
39
40struct Buffer;
41struct ConfigSubset;
42struct Email;
43struct MuttWindow;
44
45struct MuttWindow *env_window_new(struct Email *e, struct Buffer *fcc, struct ConfigSubset *sub);
46int env_function_dispatcher(struct MuttWindow *win, int op);
47
48#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, int op)
Perform an Envelope function - Implements function_dispatcher_t -.
Definition functions.c:530
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