|
|
@@ -1,6 +1,6 @@ |
|
|
|
/*
|
|
|
|
* DPF Max Gen
|
|
|
|
* Copyright (C) 2015 Filipe Coelho <falktx@falktx.com>
|
|
|
|
* Copyright (C) 2015-2022 Filipe Coelho <falktx@falktx.com>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any purpose with
|
|
|
|
* or without fee is hereby granted, provided that the above copyright notice and this
|
|
|
@@ -44,6 +44,11 @@ protected: |
|
|
|
return DISTRHO_PLUGIN_DESCRIPTION;
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t getUniqueId() const noexcept override
|
|
|
|
{
|
|
|
|
return DISTRHO_PLUGIN_VERSION;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* getMaker() const noexcept override
|
|
|
|
{
|
|
|
|
return "DISTRHO";
|
|
|
@@ -64,15 +69,10 @@ protected: |
|
|
|
return d_version(0, 1, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t getUniqueId() const noexcept override
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
return d_cconst('D', 'M', 'a', 'G');
|
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------
|
|
|
|
// Init
|
|
|
|
|
|
|
|
void initAudioPort(bool input, uint32_t index, AudioPort& port) override;
|
|
|
|
void initParameter(uint32_t index, Parameter& parameter) override;
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------
|
|
|
|