- made the ZMusic interface more DLL friendly: Reworked all functions not to throw exceptions across the library boundary and made a few definitions internal.
Not complete yet.
This commit is contained in:
parent
c24f9b42ba
commit
7923d25cce
11 changed files with 223 additions and 140 deletions
|
|
@ -57,7 +57,7 @@ void *safe_malloc(size_t count)
|
|||
auto p = malloc(count);
|
||||
if (!p)
|
||||
{
|
||||
std::terminate(); // we must abort, though...
|
||||
abort(); // we must abort, though...
|
||||
}
|
||||
return p;
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue