diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2018-03-18 22:00:52 +0100 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2018-03-18 22:00:52 +0100 |
commit | 8f504cedbee2b73753d8f177b990faec3251338c (patch) | |
tree | a475087daca77fce5ca6bf39e392b84b72e4a5a6 /include | |
parent | 307af11cc7df6c9284b0c77cb1669e6ec542a3ef (diff) | |
download | synthpod-8f504cedbee2b73753d8f177b990faec3251338c.tar.xz |
app/nk: prototype plugin reinstantiation.
Diffstat (limited to 'include')
-rw-r--r-- | include/synthpod_private.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/synthpod_private.h b/include/synthpod_private.h index 9e727f79..d7a432f1 100644 --- a/include/synthpod_private.h +++ b/include/synthpod_private.h @@ -356,6 +356,7 @@ struct _reg_t { reg_item_t module_position_x; reg_item_t module_position_y; reg_item_t module_alias; + reg_item_t module_reinstantiate; reg_item_t node_position_x; reg_item_t node_position_y; reg_item_t port_refresh; @@ -643,6 +644,7 @@ sp_regs_init(reg_t *regs, LilvWorld *world, LV2_URID_Map *map) _register(®s->synthpod.module_position_x, world, map, SYNTHPOD_PREFIX"modulePositionX"); _register(®s->synthpod.module_position_y, world, map, SYNTHPOD_PREFIX"modulePositionY"); _register(®s->synthpod.module_alias, world, map, SYNTHPOD_PREFIX"moduleAlias"); + _register(®s->synthpod.module_reinstantiate, world, map, SYNTHPOD_PREFIX"moduleReinstantiate"); _register(®s->synthpod.node_position_x, world, map, SYNTHPOD_PREFIX"nodePositionX"); _register(®s->synthpod.node_position_y, world, map, SYNTHPOD_PREFIX"nodePositionY"); _register(®s->synthpod.port_refresh, world, map, SYNTHPOD_PREFIX"portRefresh"); @@ -895,6 +897,7 @@ sp_regs_deinit(reg_t *regs) _unregister(®s->synthpod.module_position_x); _unregister(®s->synthpod.module_position_y); _unregister(®s->synthpod.module_alias); + _unregister(®s->synthpod.module_reinstantiate); _unregister(®s->synthpod.node_position_x); _unregister(®s->synthpod.node_position_y); _unregister(®s->synthpod.port_refresh); |