diff options
Diffstat (limited to 'lv2/lv2plug.in/ns/ext/uri-map')
-rw-r--r-- | lv2/lv2plug.in/ns/ext/uri-map/uri-map.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/lv2/lv2plug.in/ns/ext/uri-map/uri-map.h b/lv2/lv2plug.in/ns/ext/uri-map/uri-map.h index 2062af3..dd03345 100644 --- a/lv2/lv2plug.in/ns/ext/uri-map/uri-map.h +++ b/lv2/lv2plug.in/ns/ext/uri-map/uri-map.h @@ -15,8 +15,9 @@ */ /** - @file - C header for the LV2 URI Map extension <http://lv2plug.in/ns/ext/uri-map>. + @defgroup uri-map URI Map + + C API for the LV2 URI Map extension <http://lv2plug.in/ns/ext/uri-map>. This extension defines a simple mechanism for plugins to map URIs to integers, usually for performance reasons (e.g. processing events typed by @@ -25,6 +26,8 @@ values for use in the audio thread without doing any string comparison. This allows the extensibility of RDF with the performance of integers (or centrally defined enumerations). + + @{ */ #ifndef LV2_URI_MAP_H @@ -96,3 +99,7 @@ typedef struct { #endif #endif /* LV2_URI_MAP_H */ + +/** + @} +*/ |