lib: remove unused public `enum bt_plugin_status`
[babeltrace.git] / include / babeltrace / plugin / plugin-internal.h
index 65926c0b770bd4027dc794aa6c67ece06d4e5390..763a68b2a9941ae5316e32646c7fab3b7fe6263b 100644 (file)
@@ -39,6 +39,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.048256 seconds and 4 git commands to generate.