NeoMutt
2025-09-05-70-gcfdde0
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
26
struct
MuttWindow
;
27
38
typedef
int (*
global_function_t
)(
struct
MuttWindow
*win,
int
op);
39
43
struct
GlobalFunction
44
{
45
int
op
;
46
global_function_t
function
;
47
};
48
49
int
global_function_dispatcher
(
struct
MuttWindow
*win,
int
op);
50
51
#endif
/* MUTT_GLOBAL_FUNCTIONS_H */
global_function_t
int(* global_function_t)(struct MuttWindow *win, int op)
Definition
global.h:38
global_function_dispatcher
int global_function_dispatcher(struct MuttWindow *win, int op)
Perform a Global function - Implements function_dispatcher_t -.
Definition
global.c:181
GlobalFunction
A NeoMutt function.
Definition
global.h:44
GlobalFunction::function
global_function_t function
Function to call.
Definition
global.h:46
GlobalFunction::op
int op
Op code, e.g. OP_ENTER_COMMAND.
Definition
global.h:45
MuttWindow
Definition
mutt_window.h:123