mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Introjucer RTAS fix. VST fix for intel compiler.
This commit is contained in:
parent
b65b34ad40
commit
0301e9d1e4
2 changed files with 16 additions and 4 deletions
|
|
@ -1448,10 +1448,10 @@ namespace
|
|||
return pluginEntryPoint (audioMaster);
|
||||
}
|
||||
|
||||
#ifndef _WIN64 // (can't compile this on win64, but it's not needed anyway with VST2.4)
|
||||
extern "C" __declspec (dllexport) void* main (audioMasterCallback audioMaster)
|
||||
#ifndef JUCE_64BIT // (can't compile this on win64, but it's not needed anyway with VST2.4)
|
||||
extern "C" __declspec (dllexport) int main (audioMasterCallback audioMaster)
|
||||
{
|
||||
return (void*) pluginEntryPoint (audioMaster);
|
||||
return (int) pluginEntryPoint (audioMaster);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue