NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
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
28
struct
EnvelopeWindowData
;
29
43
typedef
int (*
envelope_function_t
)(
struct
EnvelopeWindowData
*wdata,
const
struct
KeyEvent
*event);
44
48
struct
EnvelopeFunction
49
{
50
int
op
;
51
envelope_function_t
function
;
52
};
53
54
void
update_crypt_info
(
struct
EnvelopeWindowData
*wdata);
55
56
#endif
/* MUTT_ENVELOPE_FUNCTIONS_H */
envelope_function_t
int(* envelope_function_t)(struct EnvelopeWindowData *wdata, const struct KeyEvent *event)
Definition
functions.h:43
update_crypt_info
void update_crypt_info(struct EnvelopeWindowData *wdata)
Update the crypto info.
Definition
functions.c:151
lib.h
Manage keymappings.
EnvelopeFunction
A NeoMutt Envelope function.
Definition
functions.h:49
EnvelopeFunction::op
int op
Op code, e.g. OP_ENVELOPE_EDIT_FROM.
Definition
functions.h:50
EnvelopeFunction::function
envelope_function_t function
Function to call.
Definition
functions.h:51
EnvelopeWindowData
Data to fill the Envelope Window.
Definition
wdata.h:38
KeyEvent
An event such as a keypress.
Definition
get.h:75