NeoMutt  2025-12-11-694-ga89709
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
private.h
Go to the documentation of this file.
1
22
23#ifndef MUTT_HELPBAR_PRIVATE_H
24#define MUTT_HELPBAR_PRIVATE_H
25
26struct MuttWindow;
27
34{
35 const struct MenuDefinition *help_md;
36 const struct Mapping * help_data;
37 char * help_str;
38};
39
40void helpbar_wdata_free(struct MuttWindow *win, void **ptr);
43
44#endif /* MUTT_HELPBAR_PRIVATE_H */
void helpbar_wdata_free(struct MuttWindow *win, void **ptr)
Free Helpbar Window data - Implements MuttWindow::wdata_free() -.
Definition wdata.c:47
struct HelpbarWindowData * helpbar_wdata_get(struct MuttWindow *win)
Get the Helpbar data for this window.
Definition wdata.c:64
struct HelpbarWindowData * helpbar_wdata_new(void)
Create new Window data for the Helpbar.
Definition wdata.c:39
Help Bar Window data -.
Definition private.h:34
char * help_str
Formatted Help Bar string.
Definition private.h:37
const struct MenuDefinition * help_md
Menu Definition for key bindings.
Definition private.h:35
const struct Mapping * help_data
Data for the Help Bar.
Definition private.h:36
Mapping between user-readable string and a constant.
Definition mapping.h:33
Functions for a Dialog or Window.
Definition menu.h:80