summaryrefslogtreecommitdiffstats
path: root/slv2/pluginui.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-02-12 00:36:14 +0000
committerDavid Robillard <d@drobilla.net>2011-02-12 00:36:14 +0000
commite07eb06e7d29cc2ddee94e24571118d09c624e1e (patch)
tree744f4e71db112d8eeb7b492ab38d41cbe8a9c6e3 /slv2/pluginui.h
parent0b6bdcce6cea21909553a334629a5b3d004bd553 (diff)
downloadlilv-e07eb06e7d29cc2ddee94e24571118d09c624e1e.tar.gz
lilv-e07eb06e7d29cc2ddee94e24571118d09c624e1e.tar.bz2
lilv-e07eb06e7d29cc2ddee94e24571118d09c624e1e.zip
Tidy up documentation, remove cruft.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2924 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2/pluginui.h')
-rw-r--r--slv2/pluginui.h37
1 files changed, 11 insertions, 26 deletions
diff --git a/slv2/pluginui.h b/slv2/pluginui.h
index d13f920..93c31fb 100644
--- a/slv2/pluginui.h
+++ b/slv2/pluginui.h
@@ -23,60 +23,45 @@
extern "C" {
#endif
-/** \addtogroup slv2_data
+/** @addtogroup slv2_data
* @{
*/
/** Get the URI of a Plugin UI.
- *
- * \param ui The Plugin UI
- * \return a shared value which must not be modified or freed.
- *
- * Time = O(1)
+ * @param ui The Plugin UI
+ * @return a shared value which must not be modified or freed.
*/
SLV2_API
SLV2Value
slv2_ui_get_uri(SLV2UI ui);
/** Get the types (URIs of RDF classes) of a Plugin UI.
- *
- * \param ui The Plugin UI
- * \return a shared value which must not be modified or freed.
- *
- * Time = O(1)
+ * @param ui The Plugin UI
+ * @return a shared value which must not be modified or freed.
*/
SLV2_API
SLV2Values
slv2_ui_get_classes(SLV2UI ui);
/** Check whether a plugin UI is a given type.
- *
- * \param ui The Plugin UI
- * \param class_uri The URI of the LV2 UI type to check this UI against
- *
- * Time = O(1)
+ * @param ui The Plugin UI
+ * @param class_uri The URI of the LV2 UI type to check this UI against
*/
SLV2_API
bool
slv2_ui_is_a(SLV2UI ui, SLV2Value class_uri);
/** Get the URI for a Plugin UI's bundle.
- *
- * \param ui The Plugin UI
- * \return a shared value which must not be modified or freed.
- *
- * Time = O(1)
+ * @param ui The Plugin UI
+ * @return a shared value which must not be modified or freed.
*/
SLV2_API
SLV2Value
slv2_ui_get_bundle_uri(SLV2UI ui);
/** Get the URI for a Plugin UI's shared library.
- *
- * \param ui The Plugin UI
- * \return a shared value which must not be modified or freed.
- *
- * Time = O(1)
+ * @param ui The Plugin UI
+ * @return a shared value which must not be modified or freed.
*/
SLV2_API
SLV2Value