Instance.extensionData

const(void) * extensionData(const(char) * uri) @nogc nothrow

Get extension data from the plugin instance. Real-time safe. The type and semantics of the data returned is specific to the particular extension.

Parameters

uriURI (zero terminated C string)

Returns

Extension data which must not be modified or freed
const(void) * extensionData(string uri) nothrow

Get extension data from the plugin instance. NOT real-time safe (may allocate). The type and semantics of the data returned is specific to the particular extension.

Parameters

uriURI string

Returns

Extension data which must not be modified or freed