NeoMutt  2024-04-25-91-gb0e085
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
functions.h
Go to the documentation of this file.
1
23#ifndef MUTT_SIDEBAR_FUNCTIONS_H
24#define MUTT_SIDEBAR_FUNCTIONS_H
25
27
38typedef int (*sidebar_function_t)(struct SidebarWindowData *wdata, int op);
39
44{
45 int op;
47};
48
49#endif /* MUTT_SIDEBAR_FUNCTIONS_H */
int(* sidebar_function_t)(struct SidebarWindowData *wdata, int op)
Definition: functions.h:38
void * wdata
Private data.
Definition: mutt_window.h:144
A NeoMutt function.
Definition: functions.h:44
int op
Op code, e.g. OP_SIDEBAR_NEXT.
Definition: functions.h:45
sidebar_function_t function
Function to call.
Definition: functions.h:46
Sidebar private Window data -.
Definition: private.h:88