python-plugin-provider: Make it build
[babeltrace.git] / include / babeltrace / plugin / plugin-internal.h
index 65926c0b770bd4027dc794aa6c67ece06d4e5390..781c4ef3b5ba8955c835ae217048ae5c03c7973a 100644 (file)
@@ -32,6 +32,7 @@
 #include <babeltrace/object-internal.h>
 #include <babeltrace/types.h>
 #include <babeltrace/assert-internal.h>
+#include <babeltrace/lib-logging-internal.h>
 #include <glib.h>
 
 enum bt_plugin_type {
@@ -39,6 +40,12 @@ enum bt_plugin_type {
        BT_PLUGIN_TYPE_PYTHON = 1,
 };
 
+enum bt_plugin_status {
+       BT_PLUGIN_STATUS_OK = 0,
+       BT_PLUGIN_STATUS_ERROR = -1,
+       BT_PLUGIN_STATUS_NOMEM = -12,
+};
+
 struct bt_plugin {
        struct bt_object base;
        enum bt_plugin_type type;
This page took 0.025249 seconds and 4 git commands to generate.