blob: 3c37589e9bedd6eb704f660003e5d8c731824339 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef DICT_SETTINGS_H
#define DICT_SETTINGS_H
struct dict_server_settings {
const char *base_dir;
bool verbose_proctitle;
const char *dict_db_config;
ARRAY(const char *) dicts;
};
extern const struct setting_parser_info dict_setting_parser_info;
extern const struct dict_server_settings *dict_settings;
#endif
|