NeoMutt  2024-11-14-34-g5aaf0d
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
26#include <stdbool.h>
27
28struct AutocryptData;
29struct MuttWindow;
30
41typedef int (*autocrypt_function_t)(struct AutocryptData *pd, int op);
42
47{
48 int op;
50};
51
52int autocrypt_function_dispatcher(struct MuttWindow *win, int op);
53
54#endif /* MUTT_AUTOCRYPT_FUNCTIONS_H */
int(* autocrypt_function_t)(struct AutocryptData *pd, int op)
Definition: functions.h:41
int autocrypt_function_dispatcher(struct MuttWindow *win, int op)
Perform a Autocrypt function - Implements function_dispatcher_t -.
Definition: functions.c:213
Data to pass to the Autocrypt Functions.
A NeoMutt function.
Definition: functions.h:47
autocrypt_function_t function
Function to call.
Definition: functions.h:49
int op
Op code, e.g. OP_AUTOCRYPT_CREATE_ACCT.
Definition: functions.h:48