NeoMutt  2024-03-23-23-gec7045
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
private.h
Go to the documentation of this file.
1
23#ifndef MUTT_HELPBAR_PRIVATE_H
24#define MUTT_HELPBAR_PRIVATE_H
25
26struct MuttWindow;
27
34{
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
int help_menu
Menu for key bindings, e.g. MENU_PAGER.
Definition: private.h:35
char * help_str
Formatted Help Bar string.
Definition: private.h:37
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