NeoMutt
2024-10-02-37-gfa9146
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
enum.h
Go to the documentation of this file.
1
23
#ifndef MUTT_CONFIG_ENUM_H
24
#define MUTT_CONFIG_ENUM_H
25
29
struct
EnumDef
30
{
31
const
char
*
name
;
32
int
count
;
33
struct
Mapping
*
lookup
;
34
};
35
36
#endif
/* MUTT_CONFIG_ENUM_H */
EnumDef
An enumeration.
Definition:
enum.h:30
EnumDef::count
int count
Number of documented options.
Definition:
enum.h:32
EnumDef::name
const char * name
Config variable.
Definition:
enum.h:31
EnumDef::lookup
struct Mapping * lookup
Lookup table.
Definition:
enum.h:33
Mapping
Mapping between user-readable string and a constant.
Definition:
mapping.h:33