NeoMutt  2025-09-05-43-g177ed6
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
global.h
Go to the documentation of this file.
1
22
23#ifndef MUTT_GUI_GLOBAL_H
24#define MUTT_GUI_GLOBAL_H
25
26struct MuttWindow;
27
37typedef int (*global_function_t)(int op);
38
47
48int global_function_dispatcher(struct MuttWindow *win, int op);
49
50#endif /* MUTT_GLOBAL_FUNCTIONS_H */
int(* global_function_t)(int op)
Definition global.h:37
int global_function_dispatcher(struct MuttWindow *win, int op)
Perform a Global function - Implements function_dispatcher_t -.
Definition global.c:182
A NeoMutt function.
Definition global.h:43
global_function_t function
Function to call.
Definition global.h:45
int op
Op code, e.g. OP_ENTER_COMMAND.
Definition global.h:44