NeoMutt  2025-12-11-435-g4ac674
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
27struct KeyEvent;
28struct MuttWindow;
29
30extern struct MenuDefinition *MdAttach;
31
45typedef int (*attach_function_t)(struct AttachPrivateData *priv, const struct KeyEvent *event);
46
55
56int attach_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event);
57
58#endif /* MUTT_ATTACH_FUNCTIONS_H */
struct MenuDefinition * MdAttach
Attach Menu Definition.
Definition functions.c:55
int(* attach_function_t)(struct AttachPrivateData *priv, const struct KeyEvent *event)
Definition functions.h:45
int attach_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event)
Perform a Attach function - Implements function_dispatcher_t -.
Definition functions.c:734
A NeoMutt function.
Definition functions.h:51
attach_function_t function
Function to call.
Definition functions.h:53
int op
Op code, e.g. OP_ATTACHMENT_COLLAPSE.
Definition functions.h:52
Private state data for Attachments.
An event such as a keypress.
Definition get.h:50
Functions for a Dialog or Window.
Definition menu.h:80