NeoMutt  2024-03-23-23-gec7045
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
functions.h
Go to the documentation of this file.
1
23#ifndef MUTT_ENVELOPE_FUNCTIONS_H
24#define MUTT_ENVELOPE_FUNCTIONS_H
25
27
38typedef int (*envelope_function_t)(struct EnvelopeWindowData *wdata, int op);
39
44{
45 int op;
47};
48
49void update_crypt_info(struct EnvelopeWindowData *wdata);
50
51#endif /* MUTT_ENVELOPE_FUNCTIONS_H */
int(* envelope_function_t)(struct EnvelopeWindowData *wdata, int op)
Definition: functions.h:38
void update_crypt_info(struct EnvelopeWindowData *wdata)
Update the crypto info.
Definition: functions.c:148
A NeoMutt Envelope function.
Definition: functions.h:44
int op
Op code, e.g. OP_ENVELOPE_EDIT_FROM.
Definition: functions.h:45
envelope_function_t function
Function to call.
Definition: functions.h:46
Data to fill the Envelope Window.
Definition: wdata.h:38