Struct lv2_raw::core::LV2Feature [] [src]

#[repr(C)]
pub struct LV2Feature { pub uri: *const c_char, pub data: *mut c_void, }

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.

Fields

A globally unique, case-sensitive identifier (URI) for this feature.

This MUST be a valid URI string as defined by RFC 3986.

Pointer to arbitrary data.

The format of this data is defined by the extension which describes the feature with the given URI.