mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
MinGW: Remove support
This commit is contained in:
parent
8a4ec206f2
commit
9112911122
89 changed files with 337 additions and 1694 deletions
|
|
@ -1104,15 +1104,11 @@ private:
|
|||
|
||||
if (asioObject != nullptr)
|
||||
{
|
||||
#if ! JUCE_MINGW
|
||||
__try
|
||||
#endif
|
||||
{
|
||||
asioObject->Release();
|
||||
}
|
||||
#if ! JUCE_MINGW
|
||||
__except (EXCEPTION_EXECUTE_HANDLER) { releasedOK = false; }
|
||||
#endif
|
||||
|
||||
asioObject = nullptr;
|
||||
}
|
||||
|
|
@ -1136,17 +1132,13 @@ private:
|
|||
|
||||
bool tryCreatingDriver (bool& crashed)
|
||||
{
|
||||
#if ! JUCE_MINGW
|
||||
__try
|
||||
#endif
|
||||
{
|
||||
return CoCreateInstance (classId, 0, CLSCTX_INPROC_SERVER,
|
||||
classId, (void**) &asioObject) == S_OK;
|
||||
}
|
||||
#if ! JUCE_MINGW
|
||||
__except (EXCEPTION_EXECUTE_HANDLER) { crashed = true; }
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
String getLastDriverError() const
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue