blob: 58e34d46017a07a56ad9dad1378e3f7cd66bbcd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef XML_H
#define XML_H
/*
bool p_load_proxy_list(std::list<config::p_proxy_entry> *list, config *cfg, const char* path = NULL);
bool p_load_proxy_chains(std::list<config::p_proxy_chain> *list, config *cfg, const char *path = NULL);
bool p_save_proxy_list(std::list<config::p_proxy_entry> *list, config *cfg, const char *path = NULL);
bool p_sset_default_rule(config::p_proxy_entry *entry, config *cfg, const char *path = NULL);
bool p_save_proxy_chains(std::list<config::p_proxy_chain> *list, config *cfg, const char *path = NULL);
* */
#endif
|