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_PATTERN_MODULE_DATA_H
24
#define MUTT_PATTERN_MODULE_DATA_H
25
26
#include "
private.h
"
27
31
struct
PatternModuleData
32
{
33
struct
Notify
*
notify
;
34
struct
RangeRegex
range_regexes
[
RANGE_K_INVALID
];
35
};
36
37
#endif
/* MUTT_PATTERN_MODULE_DATA_H */
private.h
Shared constants/structs that are private to libpattern.
RANGE_K_INVALID
@ RANGE_K_INVALID
Range is invalid.
Definition
private.h:99
Notify
Notification API.
Definition
notify.c:53
PatternModuleData
Pattern private Module data.
Definition
module_data.h:32
PatternModuleData::notify
struct Notify * notify
Notifications.
Definition
module_data.h:33
PatternModuleData::range_regexes
struct RangeRegex range_regexes[RANGE_K_INVALID]
Set of Regexes for various range types.
Definition
module_data.h:34
RangeRegex
Regular expression representing a range.
Definition
private.h:80