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_BROWSER_FUNCTIONS_H
24#define MUTT_BROWSER_FUNCTIONS_H
25
26struct MuttWindow;
28
38typedef int (*browser_function_t)(struct BrowserPrivateData *priv, int op);
39
44{
45 int op;
47};
48
49int browser_function_dispatcher(struct MuttWindow *win, int op);
50
51#endif //MUTT_BROWSER_FUNCTIONS_H
int(* browser_function_t)(struct BrowserPrivateData *priv, int op)
Definition: functions.h:38
int browser_function_dispatcher(struct MuttWindow *win, int op)
Perform a Browser function.
Definition: functions.c:1139
A NeoMutt function.
Definition: functions.h:44
int op
Op code, e.g. OP_MAIN_LIMIT.
Definition: functions.h:45
browser_function_t function
Function to call.
Definition: functions.h:46
Private state data for the Browser.
Definition: private_data.h:34