NeoMutt  2025-12-11-911-gd8d604
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
functions.h
Go to the documentation of this file.
1
22
23#ifndef MUTT_BROWSER_FUNCTIONS_H
24#define MUTT_BROWSER_FUNCTIONS_H
25
26#include "key/lib.h"
27
28struct MuttWindow;
30
43typedef int (*browser_function_t)(struct BrowserPrivateData *priv, const struct KeyEvent *event);
44
53
54int browser_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event);
55
56#endif //MUTT_BROWSER_FUNCTIONS_H
int(* browser_function_t)(struct BrowserPrivateData *priv, const struct KeyEvent *event)
Definition functions.h:43
int browser_function_dispatcher(struct MuttWindow *win, const struct KeyEvent *event)
Perform a Browser function.
Definition functions.c:1442
Manage keymappings.
A NeoMutt function.
Definition functions.h:49
int op
Op code, e.g. OP_MAIN_LIMIT.
Definition functions.h:50
browser_function_t function
Function to call.
Definition functions.h:51
Private state data for the Browser.
An event such as a keypress.
Definition get.h:75