NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
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
struct
MuttWindow
;
27
31
struct
ComposeBarData
32
{
33
char
*
compose_format
;
34
};
35
36
void
cbar_data_free
(
struct
MuttWindow
*win,
void
**ptr);
37
struct
ComposeBarData
*
cbar_data_new
(
void
);
38
39
#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:32
ComposeBarData::compose_format
char * compose_format
Cached status string.
Definition
cbar_data.h:33
MuttWindow
Definition
mutt_window.h:129