NeoMutt
2024-10-02-37-gfa9146
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
functions.h
Go to the documentation of this file.
1
23
#ifndef MUTT_MENU_FUNCTIONS_H
24
#define MUTT_MENU_FUNCTIONS_H
25
26
struct
Menu
;
27
38
typedef
int (*
menu_function_t
)(
struct
Menu
*menu,
int
op);
39
43
struct
MenuFunction
44
{
45
int
op
;
46
menu_function_t
function
;
47
};
48
49
#endif
/* MUTT_MENU_FUNCTIONS_H */
menu_function_t
int(* menu_function_t)(struct Menu *menu, int op)
Definition:
functions.h:38
MenuFunction
A NeoMutt function.
Definition:
functions.h:44
MenuFunction::function
menu_function_t function
Function to call.
Definition:
functions.h:46
MenuFunction::op
int op
Op code, e.g. OP_SEARCH.
Definition:
functions.h:45
Menu
Definition:
lib.h:79