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_SIDEBAR_FUNCTIONS_H
24
#define MUTT_SIDEBAR_FUNCTIONS_H
25
26
struct
SidebarWindowData
;
27
38
typedef
int (*
sidebar_function_t
)(
struct
SidebarWindowData
*
wdata
,
int
op);
39
43
struct
SidebarFunction
44
{
45
int
op
;
46
sidebar_function_t
function
;
47
};
48
49
#endif
/* MUTT_SIDEBAR_FUNCTIONS_H */
sidebar_function_t
int(* sidebar_function_t)(struct SidebarWindowData *wdata, int op)
Definition:
functions.h:38
MuttWindow::wdata
void * wdata
Private data.
Definition:
mutt_window.h:144
SidebarFunction
A NeoMutt function.
Definition:
functions.h:44
SidebarFunction::op
int op
Op code, e.g. OP_SIDEBAR_NEXT.
Definition:
functions.h:45
SidebarFunction::function
sidebar_function_t function
Function to call.
Definition:
functions.h:46
SidebarWindowData
Sidebar private Window data -.
Definition:
private.h:88