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_SEND_MODULE_DATA_H
24
#define MUTT_SEND_MODULE_DATA_H
25
26
#include "
mutt/lib.h
"
27
#include <signal.h>
28
32
struct
SendModuleData
33
{
34
struct
Notify
*
notify
;
35
struct
ListHead
user_header
;
36
volatile
sig_atomic_t
sig_alrm
;
37
};
38
39
#endif
/* MUTT_SEND_MODULE_DATA_H */
lib.h
Convenience wrapper for the library headers.
Notify
Notification API.
Definition
notify.c:53
SendModuleData
Send private Module data.
Definition
module_data.h:33
SendModuleData::user_header
struct ListHead user_header
Custom headers to add to outgoing emails.
Definition
module_data.h:35
SendModuleData::sig_alrm
volatile sig_atomic_t sig_alrm
true after SIGALRM is received
Definition
module_data.h:36
SendModuleData::notify
struct Notify * notify
Notifications.
Definition
module_data.h:34