1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-23 01:44:22 +00:00
This commit is contained in:
jules 2007-09-24 17:49:30 +00:00
parent 7ba402348e
commit 6d6a042e00
13 changed files with 73 additions and 29 deletions

View file

@ -341,7 +341,7 @@ void Process::terminate()
exit (0);
}
bool juce_isRunningUnderDebugger() throw()
bool JUCE_CALLTYPE juce_isRunningUnderDebugger() throw()
{
static char testResult = 0;
@ -356,7 +356,7 @@ bool juce_isRunningUnderDebugger() throw()
return testResult > 0;
}
bool Process::isRunningUnderDebugger() throw()
bool JUCE_CALLTYPE Process::isRunningUnderDebugger() throw()
{
return juce_isRunningUnderDebugger();
}