diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2020-04-20 16:49:13 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2020-04-20 16:49:13 +0200 |
commit | acf42b4e5cf3b87db7839eae42f3acd3f4acb610 (patch) | |
tree | 739f77e6feef19dd5515d66f0a8460eb64061910 /include | |
parent | 2423ffe6a0471dff6369d6fbc95be215f5e44a8e (diff) | |
download | synthpod-acf42b4e5cf3b87db7839eae42f3acd3f4acb610.tar.xz |
add support for data-access feature.
Diffstat (limited to 'include')
-rw-r--r-- | include/synthpod_private.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/synthpod_private.h b/include/synthpod_private.h index bb09ef4f..f7d4cc28 100644 --- a/include/synthpod_private.h +++ b/include/synthpod_private.h @@ -421,10 +421,6 @@ struct _reg_t { struct { reg_item_t surface; } idisp; - - struct { - reg_item_t access; - } instance; }; static inline void @@ -716,8 +712,6 @@ sp_regs_init(reg_t *regs, LilvWorld *world, LV2_URID_Map *map) _register(®s->midi.controller_number, world, map, LV2_MIDI__controllerNumber); _register(®s->idisp.surface, world, map, LV2_INLINEDISPLAY_PREFIX"surface"); - - _register(®s->instance.access, world, map, LV2_INSTANCE_ACCESS_URI); } static inline void @@ -979,8 +973,6 @@ sp_regs_deinit(reg_t *regs) _unregister(®s->midi.controller_number); _unregister(®s->idisp.surface); - - _unregister(®s->instance.access); } #if 0 |