Move initialization of components to init functions
[babeltrace.git] / include / babeltrace / plugin / plugin.h
index ae6dae865a0591aa1ecf0153f71e22aecea44ad7..a8e18499f87c88a4a3663f6ae08fe12871bc2307 100644 (file)
                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\
        \
This page took 0.023762 seconds and 4 git commands to generate.