NeoMutt  2024-12-12-14-g7b49f7
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
functions.h
Go to the documentation of this file.
1
23#ifndef MUTT_AUTOCRYPT_FUNCTIONS_H
24#define MUTT_AUTOCRYPT_FUNCTIONS_H
25
26struct AutocryptData;
27struct MuttWindow;
28
39typedef int (*autocrypt_function_t)(struct AutocryptData *pd, int op);
40
45{
46 int op;
48};
49
50int autocrypt_function_dispatcher(struct MuttWindow *win, int op);
51
52#endif /* MUTT_AUTOCRYPT_FUNCTIONS_H */
int(* autocrypt_function_t)(struct AutocryptData *pd, int op)
Definition: functions.h:39
int autocrypt_function_dispatcher(struct MuttWindow *win, int op)
Perform a Autocrypt function - Implements function_dispatcher_t -.
Definition: functions.c:214
Data to pass to the Autocrypt Functions.
A NeoMutt function.
Definition: functions.h:45
autocrypt_function_t function
Function to call.
Definition: functions.h:47
int op
Op code, e.g. OP_AUTOCRYPT_CREATE_ACCT.
Definition: functions.h:46