|
1 | 1 | /* |
2 | | - * Copyright (C) 2025 Linux Studio Plugins Project <https://lsp-plug.in/> |
3 | | - * (C) 2025 Vladimir Sadovnikov <sadko4u@gmail.com> |
| 2 | + * Copyright (C) 2026 Linux Studio Plugins Project <https://lsp-plug.in/> |
| 3 | + * (C) 2026 Vladimir Sadovnikov <sadko4u@gmail.com> |
4 | 4 | * |
5 | 5 | * This file is part of lsp-plugins-trigger |
6 | 6 | * Created on: 31 июл. 2021 г. |
|
20 | 20 | */ |
21 | 21 |
|
22 | 22 | #include <lsp-plug.in/plug-fw/meta/ports.h> |
| 23 | +#include <lsp-plug.in/plug-fw/meta/registry.h> |
23 | 24 | #include <lsp-plug.in/shared/meta/developers.h> |
24 | 25 | #include <lsp-plug.in/common/status.h> |
25 | 26 | #include <private/meta/trigger.h> |
@@ -265,6 +266,7 @@ namespace lsp |
265 | 266 | mono_plugin_port_groups, |
266 | 267 | &trigger_bundle |
267 | 268 | }; |
| 269 | + LSP_REGISTER_METADATA(trigger_mono); |
268 | 270 |
|
269 | 271 | const plugin_t trigger_stereo = |
270 | 272 | { |
@@ -295,6 +297,7 @@ namespace lsp |
295 | 297 | stereo_plugin_port_groups, |
296 | 298 | &trigger_bundle |
297 | 299 | }; |
| 300 | + LSP_REGISTER_METADATA(trigger_stereo); |
298 | 301 |
|
299 | 302 | const plugin_t trigger_midi_mono = |
300 | 303 | { |
@@ -325,6 +328,7 @@ namespace lsp |
325 | 328 | mono_plugin_port_groups, |
326 | 329 | &trigger_bundle |
327 | 330 | }; |
| 331 | + LSP_REGISTER_METADATA(trigger_midi_mono); |
328 | 332 |
|
329 | 333 | const plugin_t trigger_midi_stereo = |
330 | 334 | { |
@@ -355,6 +359,7 @@ namespace lsp |
355 | 359 | stereo_plugin_port_groups, |
356 | 360 | &trigger_bundle |
357 | 361 | }; |
| 362 | + LSP_REGISTER_METADATA(trigger_midi_stereo); |
358 | 363 |
|
359 | 364 | } /* namespace meta */ |
360 | 365 | } /* namespace lsp */ |
|
0 commit comments