NeoMutt
2024-10-02-37-gfa9146
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
cbar_data.h
Go to the documentation of this file.
1
23
#ifndef MUTT_COMPOSE_CBAR_DATA_H
24
#define MUTT_COMPOSE_CBAR_DATA_H
25
26
#include "config.h"
27
28
struct
MuttWindow
;
29
33
struct
ComposeBarData
34
{
35
char
*
compose_format
;
36
};
37
38
void
cbar_data_free
(
struct
MuttWindow
*win,
void
**ptr);
39
struct
ComposeBarData
*
cbar_data_new
(
void
);
40
41
#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:34
ComposeBarData::compose_format
char * compose_format
Cached status string.
Definition:
cbar_data.h:35
MuttWindow
Definition:
mutt_window.h:122