NeoMutt  2025-12-11-435-g4ac674
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
functions.h
Go to the documentation of this file.
1
22
23#ifndef MUTT_ENVELOPE_FUNCTIONS_H
24#define MUTT_ENVELOPE_FUNCTIONS_H
25
26#include "key/lib.h"
27
29
43typedef int (*envelope_function_t)(struct EnvelopeWindowData *wdata, const struct KeyEvent *event);
44
53
54void update_crypt_info(struct EnvelopeWindowData *wdata);
55
56#endif /* MUTT_ENVELOPE_FUNCTIONS_H */
int(* envelope_function_t)(struct EnvelopeWindowData *wdata, const struct KeyEvent *event)
Definition functions.h:43
void update_crypt_info(struct EnvelopeWindowData *wdata)
Update the crypto info.
Definition functions.c:148
Manage keymappings.
A NeoMutt Envelope function.
Definition functions.h:49
int op
Op code, e.g. OP_ENVELOPE_EDIT_FROM.
Definition functions.h:50
envelope_function_t function
Function to call.
Definition functions.h:51
Data to fill the Envelope Window.
Definition wdata.h:38
An event such as a keypress.
Definition get.h:50