build fixes
[babeltrace.git] / include / babeltrace / plugin / plugin.h
index 9e5c9a87577d6a843c4d35e7eeb7fc9d46cdba63..77204d9d76e5647bc055c81e488f2ae620a40e76 100644 (file)
@@ -69,10 +69,12 @@ enum bt_plugin_status {
 
        /** No error, okay. */
        BT_PLUGIN_STATUS_OK =           0,
-}
+};
+
+struct bt_plugin;
 
 /**
- * Get plug-in instance name
+ * Get plug-in instance name.
  *
  * @param plugin       Plug-in instance of which to get the name
  * @returns            Returns a pointer to the plug-in's name
@@ -80,7 +82,7 @@ enum bt_plugin_status {
 extern const char *bt_plugin_get_name(struct bt_plugin *plugin);
 
 /**
- * Set plug-in instance name
+ * Set plug-in instance name.
  *
  * @param plugin       Plug-in instance of which to set the name
  * @param name         New plug-in name (will be copied)
@@ -90,7 +92,7 @@ extern enum bt_plugin_status bt_plugin_set_name(
                struct bt_plugin *plugin, const char *name);
 
 /**
- * Get plug-in instance type
+ * Get plug-in instance type.
  *
  * @param plugin       Plug-in instance of which to get the type
  * @returns            One of #bt_plugin_type values
@@ -98,7 +100,7 @@ extern enum bt_plugin_status bt_plugin_set_name(
 extern enum bt_plugin_type bt_plugin_get_type(struct bt_plugin *plugin);
 
 /**
- * Set a plug-in instance's error stream
+ * Set a plug-in instance's error stream.
  *
  * @param plugin       Plug-in instance
  * @param error_stream Error stream
This page took 0.028037 seconds and 4 git commands to generate.