Also make sure that all group host threads exit

I actually don't know if this is necessary, but it was necessary for
individually hosted plugins, so presumably it's also needed here.
This commit is contained in:
Robbert van der Helm
2021-05-01 17:20:13 +02:00
parent 757fb6d372
commit e912bdd302
+4
View File
@@ -89,4 +89,8 @@ __cdecl
return 0;
}
// Like in `individual-host.cpp`, this shouldn't be needed, but sometimes
// with Wine background threads will be kept alive while this process exits
TerminateProcess(GetCurrentProcess(), 0);
}