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_ATTACH_FUNCTIONS_H
24#define MUTT_ATTACH_FUNCTIONS_H
25
26struct KeyEvent;
27struct MuttWindow;
28
33{
34 struct NeoMutt *n;
36};
37
51typedef int (*attach_function_t)(struct AttachFunctionData *fdata, const struct KeyEvent *event);
52
61
62int attach_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event);
63
64#endif /* MUTT_ATTACH_FUNCTIONS_H */
int(* attach_function_t)(struct AttachFunctionData *fdata, const struct KeyEvent *event)
Definition functions.h:51
int attach_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event)
Perform a Attach function - Implements function_dispatcher_t -.
Definition functions.c:829
Data passed to Attach worker functions.
Definition functions.h:33
struct AttachPrivateData * priv
Attach private data.
Definition functions.h:35
struct NeoMutt * n
NeoMutt application data.
Definition functions.h:34
A NeoMutt function.
Definition functions.h:57
attach_function_t function
Function to call.
Definition functions.h:59
int op
Op code, e.g. OP_ATTACH_COLLAPSE.
Definition functions.h:58
Private state data for Attachments.
An event such as a keypress.
Definition get.h:75
Container for Accounts, Notifications.
Definition neomutt.h:41