NeoMutt  2025-12-11-911-gd8d604
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
pgp_functions.h
Go to the documentation of this file.
1
22
23#ifndef MUTT_NCRYPT_PGP_FUNCTIONS_H
24#define MUTT_NCRYPT_PGP_FUNCTIONS_H
25
26#include <stdbool.h>
27
28struct KeyEvent;
29struct MuttWindow;
30
34struct PgpData
35{
36 bool done;
37 struct Menu *menu;
38 struct PgpUidArray *key_table;
39 struct PgpKeyInfo *key;
40};
41
55typedef int (*pgp_function_t)(struct PgpData *pd, const struct KeyEvent *event);
56
65
66int pgp_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event);
67
68#endif /* MUTT_NCRYPT_PGP_FUNCTIONS_H */
int pgp_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event)
Perform a Pgp function - Implements function_dispatcher_t -.
int(* pgp_function_t)(struct PgpData *pd, const struct KeyEvent *event)
An event such as a keypress.
Definition get.h:75
Definition lib.h:86
Data to pass to the Pgp Functions.
struct Menu * menu
Pgp Menu.
bool done
Should we close the Dialog?
struct PgpUidArray * key_table
Array of Keys.
struct PgpKeyInfo * key
Selected Key.
A NeoMutt function.
int op
Op code, e.g. OP_GENERIC_SELECT_ENTRY.
pgp_function_t function
Function to call.
Information about a PGP key.
Definition pgplib.h:49