NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
inheritance.h
Go to the documentation of this file.
1
22
23
#ifndef MUTT_CONFIG_INHERITANCE_H
24
#define MUTT_CONFIG_INHERITANCE_H
25
26
#include <stdint.h>
27
31
struct
Inheritance
32
{
33
struct
HashElem
*
parent
;
34
const
char
*
name
;
35
intptr_t
var
;
36
};
37
38
#endif
/* MUTT_CONFIG_INHERITANCE_H */
HashElem
The item stored in a Hash Table.
Definition
hash.h:44
Inheritance
An inherited config item.
Definition
inheritance.h:32
Inheritance::parent
struct HashElem * parent
HashElem of parent config item.
Definition
inheritance.h:33
Inheritance::name
const char * name
Name of this config item.
Definition
inheritance.h:34
Inheritance::var
intptr_t var
(Pointer to) value, of config item
Definition
inheritance.h:35