Build system: build reader plug-in stub
[babeltrace.git] / include / babeltrace / plugin / plugin-internal.h
index d6bbbd3f766e7e9a59e172086c8a22dffc96afe2..22d50abe20280022f0304b6bb6558fbf9c451a92 100644 (file)
  * SOFTWARE.
  */
 
-#include <stdint.h>
+#include <babeltrace/babeltrace-internal.h>
+#include <babeltrace/plugin/plugin.h>
+#include <babeltrace/plugin/plugin-system.h>
+#include <babeltrace/ctf-writer/ref-internal.h>
+#include <glib.h>
+#include <stdio.h>
 
 #ifdef __cplusplus
 extern "C" {
@@ -36,10 +41,23 @@ extern "C" {
 struct bt_notification;
 
 struct bt_plugin {
-       const char * name;
+       struct bt_ctf_ref ref_count;
+       GString *name;
        enum bt_plugin_type type;
+       /** No ownership taken */
+       FILE *error_stream;
+
+       void *user_data;
+       bt_plugin_destroy_cb user_data_destroy;
+       bt_plugin_destroy_cb destroy;
 };
 
+BT_HIDDEN
+enum bt_plugin_status bt_plugin_init(struct bt_plugin *plugin, const char *name,
+               void *user_data,bt_plugin_destroy_cb destroy_func,
+               enum bt_plugin_type plugin_type,
+               bt_plugin_destroy_cb plugin_destroy);
+
 #ifdef __cplusplus
 }
 #endif
This page took 0.025141 seconds and 4 git commands to generate.