mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
AAX: removed another 4-char const name.
This commit is contained in:
parent
fe405e8eb8
commit
518d3084c8
1 changed files with 0 additions and 15 deletions
|
|
@ -62,20 +62,6 @@ struct AAXClasses
|
|||
jassert (result == AAX_SUCCESS); (void) result;
|
||||
}
|
||||
|
||||
struct FourCharConst
|
||||
{
|
||||
FourCharConst (const uint32 n) noexcept
|
||||
{
|
||||
asString[0] = (char) (n >> 24);
|
||||
asString[1] = (char) (n >> 16);
|
||||
asString[2] = (char) (n >> 8);
|
||||
asString[3] = (char) n;
|
||||
asString[4] = 0;
|
||||
}
|
||||
|
||||
char asString[5];
|
||||
};
|
||||
|
||||
static AAX_EStemFormat getFormatForChans (const int numChans) noexcept
|
||||
{
|
||||
switch (numChans)
|
||||
|
|
@ -542,7 +528,6 @@ AAX_Result JUCE_CDECL GetEffectDescriptions (AAX_ICollection* collection)
|
|||
collection->SetManufacturerName (JucePlugin_Manufacturer);
|
||||
collection->AddPackageName (JucePlugin_Desc);
|
||||
collection->AddPackageName (JucePlugin_Name);
|
||||
collection->AddPackageName (AAXClasses::FourCharConst (JucePlugin_PluginCode).asString);
|
||||
collection->SetPackageVersion (JucePlugin_VersionCode);
|
||||
|
||||
return AAX_SUCCESS;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue