X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Fplugin%2Fplugin.h;h=a8e18499f87c88a4a3663f6ae08fe12871bc2307;hb=8738a040a7933a157d153a5adab52f134be3304a;hp=ae6dae865a0591aa1ecf0153f71e22aecea44ad7;hpb=a6fe9093ee7f987bee0028f652266d8b300091c4;p=babeltrace.git diff --git a/include/babeltrace/plugin/plugin.h b/include/babeltrace/plugin/plugin.h index ae6dae86..a8e18499 100644 --- a/include/babeltrace/plugin/plugin.h +++ b/include/babeltrace/plugin/plugin.h @@ -41,13 +41,13 @@ struct bt_component_factory *factory)\ { -#define BT_PLUGIN_SOURCE_COMPONENT_CLASS_ENTRY(_name, _init, _fini, _it_cr) \ +#define BT_PLUGIN_SOURCE_COMPONENT_CLASS_ENTRY(_name, _init) \ bt_component_factory_register_source_component_class(factory, \ - _name, _init, _fini, _it_cr); + _name, _init); -#define BT_PLUGIN_SINK_COMPONENT_CLASS_ENTRY(_name, _init, _fini, _hd_notif) \ +#define BT_PLUGIN_SINK_COMPONENT_CLASS_ENTRY(_name, _init) \ bt_component_factory_register_sink_component_class(factory, \ - _name, _init, _fini, _hd_notif); + _name, _init); #define BT_PLUGIN_COMPONENT_CLASSES_END\ \