Unverified Commit 5a199088 by Christian Brauner Committed by Stéphane Graber

confile: non-functional changes

parent bf6e4d74
...@@ -31,10 +31,13 @@ ...@@ -31,10 +31,13 @@
struct lxc_conf; struct lxc_conf;
struct lxc_list; struct lxc_list;
typedef int (*config_set_cb)(const char *, const char *, struct lxc_conf *, typedef int (*config_set_cb)(const char *key, const char *value,
struct lxc_conf *conf, void *data);
typedef int (*config_get_cb)(const char *key, char *value, int inlen,
struct lxc_conf *conf);
typedef int (*config_clr_cb)(const char *key, struct lxc_conf *conf,
void *data); void *data);
typedef int (*config_get_cb)(const char *, char *, int, struct lxc_conf *);
typedef int (*config_clr_cb)(const char *, struct lxc_conf *c, void *data);
struct lxc_config_t { struct lxc_config_t {
char *name; char *name;
config_set_cb set; config_set_cb set;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment