NeoMutt  2023-03-22
Teaching an old dog new tricks
DOXYGEN
msgcont.h
Go to the documentation of this file.
1
23#ifndef MUTT_GUI_MSGCONT_H
24#define MUTT_GUI_MSGCONT_H
25
26struct MuttWindow;
27
28struct MuttWindow *msgcont_new(void);
29struct MuttWindow *msgcont_pop_window(void);
30void msgcont_push_window(struct MuttWindow *win);
31
32#endif /* MUTT_GUI_MSGCONT_H */
struct MuttWindow * msgcont_new(void)
Create a new Message Container.
Definition: msgcont.c:45
void msgcont_push_window(struct MuttWindow *win)
Add a window to the Container Stack.
Definition: msgcont.c:87
struct MuttWindow * msgcont_pop_window(void)
Remove the last Window from the Container Stack.
Definition: msgcont.c:56