NeoMutt  2025-12-11-911-gd8d604
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
26struct KeyEvent;
27struct MuttWindow;
28
38
52typedef int (*compose_function_t)(struct ComposeFunctionData *fdata,
53 const struct KeyEvent *event);
54
63
64int compose_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event);
65
66#endif /* MUTT_COMPOSE_FUNCTIONS_H */
int(* compose_function_t)(struct ComposeFunctionData *fdata, const struct KeyEvent *event)
Definition functions.h:52
int compose_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event)
Perform a Compose function - Implements function_dispatcher_t -.
Definition functions.c:2713
Data passed to Compose worker functions.
Definition functions.h:33
struct NeoMutt * n
NeoMutt application data.
Definition functions.h:34
struct ComposeSharedData * shared
Shared Compose data.
Definition functions.h:36
struct ComposeModuleData * mod_data
Compose module data.
Definition functions.h:35
A NeoMutt function.
Definition functions.h:59
int op
Op code, e.g. OP_COMPOSE_WRITE_MESSAGE.
Definition functions.h:60
compose_function_t function
Function to call.
Definition functions.h:61
Compose private Module data.
Definition module_data.h:30
Shared Compose Data.
Definition shared_data.h:35
An event such as a keypress.
Definition get.h:75
Container for Accounts, Notifications.
Definition neomutt.h:41