1
0
Fork 0
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:
jules 2012-01-10 11:35:46 +00:00
parent b65b34ad40
commit 0301e9d1e4
2 changed files with 16 additions and 4 deletions

View file

@ -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