diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2017-09-24 19:26:00 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2017-09-24 19:26:00 +0200 |
commit | b57eed3fcb70f00b721cff76a093f0f7bc0b425c (patch) | |
tree | 745ba48b5768349de97659e1b267cb8ce5667845 /include | |
parent | a8ebec954f095b3edf6e6e07efd350d3023a37e5 (diff) | |
download | synthpod-b57eed3fcb70f00b721cff76a093f0f7bc0b425c.tar.xz |
prototype spod:alias property.
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 45f67d7f..04bd1c86 100644 --- a/include/synthpod_private.h +++ b/include/synthpod_private.h @@ -353,6 +353,7 @@ struct _reg_t { reg_item_t module_profiling; reg_item_t module_position_x; reg_item_t module_position_y; + reg_item_t module_alias; reg_item_t node_position_x; reg_item_t node_position_y; reg_item_t port_refresh; @@ -632,6 +633,7 @@ sp_regs_init(reg_t *regs, LilvWorld *world, LV2_URID_Map *map) _register(®s->synthpod.module_profiling, world, map, SYNTHPOD_PREFIX"moduleProfiling"); _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.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"); @@ -876,6 +878,7 @@ sp_regs_deinit(reg_t *regs) _unregister(®s->synthpod.module_profiling); _unregister(®s->synthpod.module_position_x); _unregister(®s->synthpod.module_position_y); + _unregister(®s->synthpod.module_alias); _unregister(®s->synthpod.node_position_x); _unregister(®s->synthpod.node_position_y); _unregister(®s->synthpod.port_refresh); |