NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
module_data.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_ATTACH_MODULE_DATA_H
24
#define MUTT_ATTACH_MODULE_DATA_H
25
26
#include "
mutt/lib.h
"
27
31
struct
AttachModuleData
32
{
33
struct
Notify
*
notify
;
34
struct
ListHead
attach_allow
;
35
struct
ListHead
attach_exclude
;
36
struct
ListHead
inline_allow
;
37
struct
ListHead
inline_exclude
;
38
struct
Notify
*
attachments_notify
;
39
40
struct
MenuDefinition
*
menu_attach
;
41
42
struct
ListHead
mime_lookup
;
43
struct
ListHead
temp_attachments
;
44
};
45
46
#endif
/* MUTT_ATTACH_MODULE_DATA_H */
lib.h
Convenience wrapper for the library headers.
AttachModuleData
Attach private Module data.
Definition
module_data.h:32
AttachModuleData::attach_allow
struct ListHead attach_allow
List of attachment types to be counted.
Definition
module_data.h:34
AttachModuleData::attach_exclude
struct ListHead attach_exclude
List of attachment types to be ignored.
Definition
module_data.h:35
AttachModuleData::notify
struct Notify * notify
Notifications.
Definition
module_data.h:33
AttachModuleData::menu_attach
struct MenuDefinition * menu_attach
Attach menu definition.
Definition
module_data.h:40
AttachModuleData::temp_attachments
struct ListHead temp_attachments
List of temporary files for displaying attachments.
Definition
module_data.h:43
AttachModuleData::inline_allow
struct ListHead inline_allow
List of inline types to counted.
Definition
module_data.h:36
AttachModuleData::inline_exclude
struct ListHead inline_exclude
List of inline types to ignore.
Definition
module_data.h:37
AttachModuleData::mime_lookup
struct ListHead mime_lookup
List of mime types that that shouldn't use the mailcap entry.
Definition
module_data.h:42
AttachModuleData::attachments_notify
struct Notify * attachments_notify
Notifications: NotifyAttach.
Definition
module_data.h:38
MenuDefinition
Functions for a Dialog or Window.
Definition
menudef.h:44
Notify
Notification API.
Definition
notify.c:53