Missing notification parameter in bt_component_sink_handle_notification
[babeltrace.git] / include / babeltrace / plugin / sink.h
index 8284b348407190df6701fc81a7e16c9bff2e39af..5f188d33e80eff7a1c3411458a33c85e1c2dfc14 100644 (file)
  * SOFTWARE.
  */
 
-#include <babeltrace/plugin/plugin-system.h>
-
 #ifdef __cplusplus
 extern "C" {
 #endif
 
+struct bt_component;
+struct bt_notification;
+
 /**
  * Hand-off a notification to a sink component.
  *
  * @param component    Component instance
+ * @param notification Notification instance to handle
  * @returns            One of #bt_component_status values
  */
 enum bt_component_status bt_component_sink_handle_notification(
-               struct bt_component *component);
+               struct bt_component *component,
+               struct bt_notification *notification);
 
 #ifdef __cplusplus
 }
This page took 0.024348 seconds and 4 git commands to generate.