mirror of
https://github.com/thunderbrewhq/squall.git
synced 2026-02-04 00:49:08 +00:00
27 lines
615 B
C++
27 lines
615 B
C++
#include "Core.hpp"
|
|
#include "Event.hpp"
|
|
|
|
int32_t STORMAPI StormDestroy() {
|
|
// Combined list of all calls from every game
|
|
|
|
// SErrSetBlizzardErrorFunction(nullptr);
|
|
// SDlgDestroy();
|
|
// SGdiDestroy();
|
|
// SVidDestroy();
|
|
// SDrawDestroy();
|
|
// SRgnDestroy();
|
|
// SMsgDestroy();
|
|
// SNetDestroy();
|
|
SEvtDestroy();
|
|
// SBltDestroy();
|
|
// SCodeDestroy();
|
|
// SCmdDestroy();
|
|
// SFileDestroy();
|
|
// SCompDestroy();
|
|
// SStrDestroy();
|
|
// SRegDestroy();
|
|
// SErrDestroy();
|
|
// SLogDestroy();
|
|
// STransDestroy();
|
|
return 1;
|
|
}
|