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_COMPOSE_FUNCTIONS_H
24#define MUTT_COMPOSE_FUNCTIONS_H
25
27struct KeyEvent;
28struct MuttWindow;
29
30extern struct MenuDefinition *MdCompose;
31
45typedef int (*compose_function_t)(struct ComposeSharedData *priv, const struct KeyEvent *event);
46
55
56int compose_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event);
57
58#endif /* MUTT_COMPOSE_FUNCTIONS_H */
struct MenuDefinition * MdCompose
Compose Menu Definition.
Definition functions.c:74
int(* compose_function_t)(struct ComposeSharedData *priv, const struct KeyEvent *event)
Definition functions.h:45
int compose_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event)
Perform a Compose function - Implements function_dispatcher_t -.
Definition functions.c:2185
A NeoMutt function.
Definition functions.h:51
int op
Op code, e.g. OP_COMPOSE_WRITE_MESSAGE.
Definition functions.h:52
compose_function_t function
Function to call.
Definition functions.h:53
Shared Compose Data.
Definition shared_data.h:35
An event such as a keypress.
Definition get.h:50
Functions for a Dialog or Window.
Definition menu.h:80