squall/storm/Core.cpp

29 lines
613 B
C++
Raw Normal View History

#include "Core.hpp"
#include "Event.hpp"
2025-09-23 00:08:41 -07:00
#include "Transparency.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();
2025-09-23 00:08:41 -07:00
STransDestroy();
return 1;
}