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_AUTOCRYPT_FUNCTIONS_H
24#define MUTT_AUTOCRYPT_FUNCTIONS_H
25
26struct AutocryptData;
27struct KeyEvent;
28struct MuttWindow;
29
30extern struct MenuDefinition *MdAutocrypt;
31
45typedef int (*autocrypt_function_t)(struct AutocryptData *pd, const struct KeyEvent *event);
46
55
56int autocrypt_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event);
57
58#endif /* MUTT_AUTOCRYPT_FUNCTIONS_H */
struct MenuDefinition * MdAutocrypt
Autocrypt Menu Definition.
Definition functions.c:46
int(* autocrypt_function_t)(struct AutocryptData *pd, const struct KeyEvent *event)
Definition functions.h:45
int autocrypt_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event)
Perform a Autocrypt function - Implements function_dispatcher_t -.
Definition functions.c:226
Data to pass to the Autocrypt Functions.
A NeoMutt function.
Definition functions.h:51
autocrypt_function_t function
Function to call.
Definition functions.h:53
int op
Op code, e.g. OP_AUTOCRYPT_CREATE_ACCT.
Definition functions.h:52
An event such as a keypress.
Definition get.h:50
Functions for a Dialog or Window.
Definition menu.h:80