NeoMutt
2025-09-05-7-geaa2bd
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Home
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Typedefs
a
b
c
e
f
g
h
i
k
l
m
n
o
p
r
s
t
w
Enumerations
a
b
c
d
e
f
g
h
i
k
l
m
n
p
q
r
s
t
u
v
w
x
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
w
x
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
w
Libraries
APIs
GitHub
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
global.h
Go to the documentation of this file.
1
23
#ifndef MUTT_GUI_GLOBAL_H
24
#define MUTT_GUI_GLOBAL_H
25
26
struct
MuttWindow
;
27
37
typedef
int (*
global_function_t
)(
int
op);
38
42
struct
GlobalFunction
43
{
44
int
op
;
45
global_function_t
function
;
46
};
47
48
int
global_function_dispatcher
(
struct
MuttWindow
*win,
int
op);
49
50
#endif
/* MUTT_GLOBAL_FUNCTIONS_H */
global_function_t
int(* global_function_t)(int op)
Definition:
global.h:37
global_function_dispatcher
int global_function_dispatcher(struct MuttWindow *win, int op)
Perform a Global function - Implements function_dispatcher_t -.
Definition:
global.c:182
GlobalFunction
A NeoMutt function.
Definition:
global.h:43
GlobalFunction::function
global_function_t function
Function to call.
Definition:
global.h:45
GlobalFunction::op
int op
Op code, e.g. OP_GLOBAL_NEXT.
Definition:
global.h:44
MuttWindow
Definition:
mutt_window.h:123