NeoMutt  2024-03-23-147-g885fbc
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
functions.h
Go to the documentation of this file.
1
23#ifndef MUTT_COMPOSE_FUNCTIONS_H
24#define MUTT_COMPOSE_FUNCTIONS_H
25
26struct MuttWindow;
28
39typedef int (*compose_function_t)(struct ComposeSharedData *priv, int op);
40
45{
46 int op;
48};
49
50int compose_function_dispatcher(struct MuttWindow *win, int op);
51
52#endif /* MUTT_COMPOSE_FUNCTIONS_H */
int(* compose_function_t)(struct ComposeSharedData *priv, int op)
Definition: functions.h:39
int compose_function_dispatcher(struct MuttWindow *win, int op)
Perform a Compose function - Implements function_dispatcher_t -.
Definition: functions.c:2153
A NeoMutt function.
Definition: functions.h:45
int op
Op code, e.g. OP_COMPOSE_WRITE_MESSAGE.
Definition: functions.h:46
compose_function_t function
Function to call.
Definition: functions.h:47
Shared Compose Data.
Definition: shared_data.h:35