1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
// Copyright 2008-2016 David Robillard <d@drobilla.net>
// SPDX-License-Identifier: ISC
#ifndef LV2_INSTANCE_ACCESS_H
#define LV2_INSTANCE_ACCESS_H
/**
@defgroup instance-access Instance Access
@ingroup lv2
Access to the LV2_Handle of a plugin for UIs.
See <http://lv2plug.in/ns/ext/instance-access> for details.
@{
*/
// clang-format off
#define LV2_INSTANCE_ACCESS_URI "http://lv2plug.in/ns/ext/instance-access" ///< http://lv2plug.in/ns/ext/instance-access
// clang-format on
/**
@}
*/
#endif /* LV2_INSTANCE_ACCESS_H */
|