Javadoc fixes
[babeltrace.git] / include / babeltrace / plugin / plugin-internal.h
index d6bbbd3f766e7e9a59e172086c8a22dffc96afe2..83654c17d54e436e14b71c4f43d02d64b168f584 100644 (file)
@@ -27,7 +27,8 @@
  * SOFTWARE.
  */
 
-#include <stdint.h>
+#include <babeltrace/babeltrace-internal.h>
+#include <glib.h>
 
 #ifdef __cplusplus
 extern "C" {
@@ -36,8 +37,12 @@ extern "C" {
 struct bt_notification;
 
 struct bt_plugin {
-       const char * name;
+       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.026955 seconds and 4 git commands to generate.