NeoMutt  2024-03-23-147-g885fbc
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#ifdef USE_AUTOCRYPT
40#include "autocrypt/lib.h"
41#endif
42
43struct Buffer;
44struct ConfigSubset;
45struct Email;
46struct MuttWindow;
47
48struct MuttWindow *env_window_new(struct Email *e, struct Buffer *fcc, struct ConfigSubset *sub);
49int env_function_dispatcher(struct MuttWindow *win, int op);
50
51#endif /* MUTT_ENVELOPE_LIB_H */
Autocrypt end-to-end encryption.
struct MuttWindow * env_window_new(struct Email *e, struct Buffer *fcc, struct ConfigSubset *sub)
Create the Envelope Window.
Definition: window.c:991
int env_function_dispatcher(struct MuttWindow *win, int op)
Perform an Envelope function - Implements function_dispatcher_t -.
Definition: functions.c:546
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