NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
private.h
Go to the documentation of this file.
1
23#ifndef MUTT_COMPOSE_PRIVATE_H
24#define MUTT_COMPOSE_PRIVATE_H
25
26#include "config.h"
27#include <stdbool.h>
28
29struct AttachCtx;
32struct ConfigSubset;
33struct Menu;
34struct MuttWindow;
35
36struct MuttWindow *attach_new(struct MuttWindow *parent, struct ComposeSharedData *shared);
37unsigned long cum_attachs_size(struct ConfigSubset *sub, struct ComposeAttachData *adata);
38void update_menu(struct AttachCtx *actx, struct Menu *menu, bool init);
39
40#endif /* MUTT_COMPOSE_PRIVATE_H */
unsigned long cum_attachs_size(struct ConfigSubset *sub, struct ComposeAttachData *adata)
Cumulative Attachments Size.
Definition: attach.c:84
void update_menu(struct AttachCtx *actx, struct Menu *menu, bool init)
Redraw the compose window.
Definition: dlg_compose.c:217
struct MuttWindow * attach_new(struct MuttWindow *parent, struct ComposeSharedData *shared)
Create the Attachments Menu.
Definition: attach.c:241
A set of attachments.
Definition: attach.h:65
Data to fill the Compose Attach Window.
Definition: attach_data.h:33
Shared Compose Data.
Definition: shared_data.h:35
A set of inherited config items.
Definition: subset.h:47
Definition: lib.h:79
struct MuttWindow * parent
Parent Window.
Definition: mutt_window.h:135