The union of the color and the node_number in the struct screen_char.
[elinks.git] / src / config / domain.h
blob726201afdeb81c7e30976bde7c790a093d9a0b09
1 #ifndef EL__CONFIG_DOMAIN_H
2 #define EL__CONFIG_DOMAIN_H
4 #include "config/options.h"
5 #include "util/lists.h"
7 struct session;
10 struct domain_tree {
11 LIST_HEAD(struct domain_tree);
13 struct option *tree;
15 int len;
17 unsigned char name[1]; /* Must be at end of struct. */
20 extern LIST_OF(struct domain_tree) domain_trees;
22 struct option *get_domain_tree(unsigned char *);
24 struct option *get_domain_option_from_session(unsigned char *,
25 struct session *);
27 void done_domain_trees(void);
29 #endif