LV2_Feature

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.

version(LV2)
extern (C) nothrow @nogc
struct LV2_Feature {}

Members

Variables

URI
const(char)* URI;

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

data
void* data;

Pointer to arbitrary data.

Meta