NeoMutt  2024-04-16-36-g75b6fb
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
26struct Menu;
27
38typedef int (*menu_function_t)(struct Menu *menu, int op);
39
44{
45 int op;
47};
48
49#endif /* MUTT_MENU_FUNCTIONS_H */
int(* menu_function_t)(struct Menu *menu, int op)
Definition: functions.h:38
A NeoMutt function.
Definition: functions.h:44
menu_function_t function
Function to call.
Definition: functions.h:46
int op
Op code, e.g. OP_SEARCH.
Definition: functions.h:45
Definition: lib.h:79