LV2
1.0.13
|
Feature. More...
Data Fields | |
const char * | URI |
A globally unique, case-sensitive identifier (URI) for this feature. More... | |
void * | data |
Pointer to arbitrary data. More... | |
Feature.
Features allow hosts to make additional functionality available to plugins without requiring modification to the LV2 API. Extensions may define new features and specify the URI
and data
to be used if necessary. Some features, such as lv2:isLive, do not require the host to pass data.
const char* LV2_Feature::URI |
A globally unique, case-sensitive identifier (URI) for this feature.
This MUST be a valid URI string as defined by RFC 3986.
void* LV2_Feature::data |
Pointer to arbitrary data.
The format of this data is defined by the extension which describes the feature with the given URI
.