Notification interfaces
[babeltrace.git] / include / babeltrace / plugin / plugin-internal.h
index d6bbbd3f766e7e9a59e172086c8a22dffc96afe2..a05053182705d082892159443b5ebe635c5a8b58 100644 (file)
@@ -27,7 +27,9 @@
  * SOFTWARE.
  */
 
-#include <stdint.h>
+#include <babeltrace/babeltrace-internal.h>
+#include <babeltrace/ctf-writer/ref-internal.h>
+#include <glib.h>
 
 #ifdef __cplusplus
 extern "C" {
@@ -36,8 +38,13 @@ extern "C" {
 struct bt_notification;
 
 struct bt_plugin {
-       const char * name;
+       struct bt_ctf_ref ref_count;
+       GString *name;
        enum bt_plugin_type type;
+
+       /* Plug-in implementation callbacks */
+       bt_plugin_destroy_cb destroy;
+       bt_plugin_set_error_stream_cb set_error_stream;
 };
 
 #ifdef __cplusplus
This page took 0.023791 seconds and 4 git commands to generate.