NeoMutt
2025-12-11-435-g4ac674
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
cbar_data.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_COMPOSE_CBAR_DATA_H
24
#define MUTT_COMPOSE_CBAR_DATA_H
25
26
27
struct
MuttWindow
;
28
32
struct
ComposeBarData
33
{
34
char
*
compose_format
;
35
};
36
37
void
cbar_data_free
(
struct
MuttWindow
*win,
void
**ptr);
38
struct
ComposeBarData
*
cbar_data_new
(
void
);
39
40
#endif
/* MUTT_COMPOSE_CBAR_DATA_H */
cbar_data_new
struct ComposeBarData * cbar_data_new(void)
Create the private data for the Compose Bar.
Definition
cbar_data.c:52
cbar_data_free
void cbar_data_free(struct MuttWindow *win, void **ptr)
Free the private Compose Bar data - Implements MuttWindow::wdata_free() -.
Definition
cbar_data.c:36
ComposeBarData
Data to fill the Compose Bar Window.
Definition
cbar_data.h:33
ComposeBarData::compose_format
char * compose_format
Cached status string.
Definition
cbar_data.h:34
MuttWindow
Definition
mutt_window.h:122