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_COMMANDS_MODULE_DATA_H
24
#define MUTT_COMMANDS_MODULE_DATA_H
25
26
#include "
mutt/lib.h
"
27
31
struct
CommandsModuleData
32
{
33
struct
Notify
*
notify
;
34
struct
ListHead
muttrc_stack
;
35
};
36
37
#endif
/* MUTT_COMMANDS_MODULE_DATA_H */
lib.h
Convenience wrapper for the library headers.
CommandsModuleData
Commands private Module data.
Definition
module_data.h:32
CommandsModuleData::muttrc_stack
struct ListHead muttrc_stack
LIFO of sourced config files (avoid cycles)
Definition
module_data.h:34
CommandsModuleData::notify
struct Notify * notify
Notifications.
Definition
module_data.h:33
Notify
Notification API.
Definition
notify.c:53