NeoMutt  2025-12-11-911-gd8d604
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
43typedef int (*autocrypt_function_t)(struct AutocryptData *pd, const struct KeyEvent *event);
44
53
54int autocrypt_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event);
55
56#endif /* MUTT_AUTOCRYPT_FUNCTIONS_H */
int(* autocrypt_function_t)(struct AutocryptData *pd, const struct KeyEvent *event)
Definition functions.h:43
int autocrypt_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event)
Perform a Autocrypt function - Implements function_dispatcher_t -.
Definition functions.c:239
Data to pass to the Autocrypt Functions.
A NeoMutt function.
Definition functions.h:49
autocrypt_function_t function
Function to call.
Definition functions.h:51
int op
Op code, e.g. OP_AUTOCRYPT_CREATE_ACCT.
Definition functions.h:50
An event such as a keypress.
Definition get.h:75