diff --git a/src/interfaces.rs b/src/interfaces.rs index 8abded2d..68ad72f4 100644 --- a/src/interfaces.rs +++ b/src/interfaces.rs @@ -242,6 +242,10 @@ pub fn dispatch( return plugin.get_info().category.into(); } + OpCode::GetEffectName => { + return copy_string(ptr, &plugin.get_info().name, MAX_VENDOR_STR_LEN) + } + OpCode::GetVendorName => { return copy_string(ptr, &plugin.get_info().vendor, MAX_VENDOR_STR_LEN) }