X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=cli%2Fbabeltrace-cfg.h;h=6d98cd3398daa9803841e817ba22a268beda3d60;hb=95dc9c849ed229971f663b54841d8729c7495f47;hp=e8796652514a35d218ce9e6bce828efd6790d3a7;hpb=c5b9b4417bedfbec9b5dd23b8395ccdd4eeffc44;p=babeltrace.git diff --git a/cli/babeltrace-cfg.h b/cli/babeltrace-cfg.h index e8796652..6d98cd33 100644 --- a/cli/babeltrace-cfg.h +++ b/cli/babeltrace-cfg.h @@ -44,11 +44,11 @@ enum bt_config_command { }; struct bt_config_component { - struct bt_object base; - enum bt_component_class_type type; + bt_object base; + bt_component_class_type type; GString *plugin_name; GString *comp_cls_name; - struct bt_value *params; + bt_value *params; GString *instance_name; }; @@ -61,10 +61,10 @@ struct bt_config_connection { }; struct bt_config { - struct bt_object base; + bt_object base; bool debug; bool verbose; - struct bt_value *plugin_paths; + bt_value *plugin_paths; bool omit_system_plugin_path; bool omit_home_plugin_path; bool command_needs_plugins; @@ -134,7 +134,7 @@ struct bt_config_component *bt_config_get_component(GPtrArray *array, return comp; } -int bt_config_append_plugin_paths(struct bt_value *plugin_paths, +int bt_config_append_plugin_paths(bt_value *plugin_paths, const char *arg); void bt_config_connection_destroy(struct bt_config_connection *connection);