NeoMutt
2025-12-11-911-gd8d604
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
module_data.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_POSTPONE_MODULE_DATA_H
24
#define MUTT_POSTPONE_MODULE_DATA_H
25
26
#include <stdbool.h>
27
31
struct
PostponeModuleData
32
{
33
struct
Notify
*
notify
;
34
struct
MenuDefinition
*
menu_postpone
;
35
short
post_count
;
36
bool
update_num_postponed
;
37
};
38
39
#endif
/* MUTT_POSTPONE_MODULE_DATA_H */
MenuDefinition
Functions for a Dialog or Window.
Definition
menu.h:77
Notify
Notification API.
Definition
notify.c:53
PostponeModuleData
Postpone private Module data.
Definition
module_data.h:32
PostponeModuleData::menu_postpone
struct MenuDefinition * menu_postpone
Postpone menu definition.
Definition
module_data.h:34
PostponeModuleData::post_count
short post_count
Number of postponed (draft) emails.
Definition
module_data.h:35
PostponeModuleData::notify
struct Notify * notify
Notifications.
Definition
module_data.h:33
PostponeModuleData::update_num_postponed
bool update_num_postponed
When true, force recount of drafts.
Definition
module_data.h:36