NeoMutt  2024-10-02-37-gfa9146
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
lib.h
Go to the documentation of this file.
1
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:944
int env_function_dispatcher(struct MuttWindow *win, int op)
Perform an Envelope function - Implements function_dispatcher_t -.
Definition: functions.c:527
String manipulation buffer.
Definition: buffer.h:36
A set of inherited config items.
Definition: subset.h:47
The envelope/body of an email.
Definition: email.h:39