NeoMutt  2025-09-05-43-g177ed6
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 MuttWindow;
28
39typedef int (*attach_function_t)(struct AttachPrivateData *priv, int op);
40
49
50int attach_function_dispatcher(struct MuttWindow *win, int op);
51
52#endif /* MUTT_ATTACH_FUNCTIONS_H */
int(* attach_function_t)(struct AttachPrivateData *priv, int op)
Definition functions.h:39
int attach_function_dispatcher(struct MuttWindow *win, int op)
Perform a Attach function - Implements function_dispatcher_t -.
Definition functions.c:711
A NeoMutt function.
Definition functions.h:45
attach_function_t function
Function to call.
Definition functions.h:47
int op
Op code, e.g. OP_ATTACHMENT_COLLAPSE.
Definition functions.h:46
Private state data for Attachments.
int op
Op returned from the Pager, e.g. OP_NEXT_ENTRY.