NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
functions.h
Go to the documentation of this file.
1
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
45{
46 int op;
48};
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:713
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.
Definition: private_data.h:36
int op
Op returned from the Pager, e.g. OP_NEXT_ENTRY.
Definition: private_data.h:41