loadable name for Renoise

This commit is contained in:
corey 2024-02-27 14:28:07 -06:00
parent 3bb3ee3ffb
commit 9b6e6ed646
2 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
CC?= cc
CFLAGS= -Wfatal-errors -Wall -Wextra
LDFLAGS= -s
PLUGINNAME= ladspa_example
PLUGINNAME= ladex
LADSPA_PATH?= /usr/lib64/ladspa/
all: $(PLUGINNAME).so

View File

@ -101,11 +101,11 @@ ON_LOAD_ROUTINE
if(g_psDescriptor)
{
g_psDescriptor->UniqueID=1050;
g_psDescriptor->Label=strdup("ladspa_example");
g_psDescriptor->UniqueID=1051;
g_psDescriptor->Label=strdup("lad_ex");
g_psDescriptor->Properties=LADSPA_PROPERTY_HARD_RT_CAPABLE;
g_psDescriptor->Name=strdup("ladspa example");
g_psDescriptor->Maker=strdup("ladspa example");
g_psDescriptor->Name=strdup("LADSPA example");
g_psDescriptor->Maker=strdup("LADSPA example");
g_psDescriptor->Copyright=strdup("None");
g_psDescriptor->PortCount=2;
piPortDescriptors=(LADSPA_PortDescriptor*)calloc(2,sizeof(LADSPA_PortDescriptor));