diff options
Diffstat (limited to 'include/synthpod_private.h')
-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 50fbd4af..f7d4cc28 100644 --- a/include/synthpod_private.h +++ b/include/synthpod_private.h @@ -362,6 +362,7 @@ struct _reg_t { reg_item_t module_position_y; reg_item_t module_alias; reg_item_t module_reinstantiate; + reg_item_t module_created; reg_item_t node_position_x; reg_item_t node_position_y; reg_item_t graph_position_x; @@ -657,6 +658,7 @@ sp_regs_init(reg_t *regs, LilvWorld *world, LV2_URID_Map *map) _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.module_created, world, map, SYNTHPOD_PREFIX"moduleCreated"); _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.graph_position_x, world, map, SYNTHPOD_PREFIX"graphPositionX"); @@ -917,6 +919,7 @@ sp_regs_deinit(reg_t *regs) _unregister(®s->synthpod.module_position_y); _unregister(®s->synthpod.module_alias); _unregister(®s->synthpod.module_reinstantiate); + _unregister(®s->synthpod.module_created); _unregister(®s->synthpod.node_position_x); _unregister(®s->synthpod.node_position_y); _unregister(®s->synthpod.graph_position_x); |