1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-30 03:26:23 -04:00
elinks/src/config/domain.h

38 lines
594 B
C
Raw Normal View History

2007-08-30 19:36:20 -04:00
#ifndef EL__CONFIG_DOMAIN_H
#define EL__CONFIG_DOMAIN_H
#include "config/options.h"
#include "util/lists.h"
#ifdef __cplusplus
extern "C" {
#endif
2007-08-30 19:36:20 -04:00
struct session;
struct domain_tree {
LIST_HEAD_EL(struct domain_tree);
2007-08-30 19:36:20 -04:00
struct option *tree;
int len;
char name[1]; /* Must be at end of struct. */
2007-08-30 19:36:20 -04:00
};
extern LIST_OF(struct domain_tree) domain_trees;
struct option *get_domain_tree(char *);
2007-08-30 19:36:20 -04:00
2021-03-02 04:45:59 -05:00
struct option *get_domain_option_from_session(const char *,
2007-08-30 19:36:20 -04:00
struct session *);
void done_domain_trees(void);
#ifdef __cplusplus
}
#endif
2007-08-30 19:36:20 -04:00
#endif