diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2017-09-10 23:24:30 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2017-09-10 23:24:30 +0200 |
commit | 175ab9f8210de9b9891156b2b5ad319e03c9e2a1 (patch) | |
tree | a50a123d16463da5cb05a41cda8f2a0b40a83a9b /include | |
parent | bdd9c60be59e8d97800f68ba99e5c95eb5f07df0 (diff) | |
download | synthpod-175ab9f8210de9b9891156b2b5ad319e03c9e2a1.tar.xz |
prototype implementation of inline display.
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 6a616095..41eb9395 100644 --- a/include/synthpod_private.h +++ b/include/synthpod_private.h @@ -362,6 +362,7 @@ struct _reg_t { reg_item_t cpus_available; reg_item_t cpus_used; reg_item_t quit; + reg_item_t wildcard; reg_item_t system_ports; reg_item_t control_port; @@ -634,6 +635,7 @@ sp_regs_init(reg_t *regs, LilvWorld *world, LV2_URID_Map *map) _register(®s->synthpod.cpus_available, world, map, SYNTHPOD_PREFIX"CPUsAvailable"); _register(®s->synthpod.cpus_used, world, map, SYNTHPOD_PREFIX"CPUsUsed"); _register(®s->synthpod.quit, world, map, SYNTHPOD_PREFIX"quit"); + _register(®s->synthpod.wildcard, world, map, SYNTHPOD_PREFIX"wildcard"); _register(®s->synthpod.system_ports, world, map, SYNTHPOD_PREFIX"systemPorts"); _register(®s->synthpod.control_port, world, map, SYNTHPOD_PREFIX"ControlPort"); @@ -872,6 +874,7 @@ sp_regs_deinit(reg_t *regs) _unregister(®s->synthpod.cpus_available); _unregister(®s->synthpod.cpus_used); _unregister(®s->synthpod.quit); + _unregister(®s->synthpod.wildcard); _unregister(®s->synthpod.system_ports); _unregister(®s->synthpod.control_port); |