mirror of
https://github.com/thunderbrewhq/squall.git
synced 2026-05-05 06:43:51 +00:00
feat: sync with Whoa implementation
This commit is contained in:
parent
12ab8f7721
commit
6928bf3f0c
46 changed files with 2980 additions and 441 deletions
31
storm/Core.cpp
Normal file
31
storm/Core.cpp
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
#include "Core.hpp"
|
||||
#include "Event.hpp"
|
||||
#include "Region.hpp"
|
||||
#include "String.hpp"
|
||||
#include "Transparency.hpp"
|
||||
|
||||
int32_t STORMAPI StormDestroy() {
|
||||
// Combined list of all destroy calls found in every game (as documentation)
|
||||
|
||||
// SErrSetBlizzardErrorFunction(nullptr); // SC 1.17
|
||||
// SDlgDestroy(); // SC 1.17
|
||||
// SGdiDestroy(); // SC 1.17
|
||||
// SVidDestroy(); // SC 1.17
|
||||
// SDrawDestroy(); // SC 1.17
|
||||
SRgnDestroy(); // WoW 3.3.5 (win), SC 1.17
|
||||
// SMsgDestroy(); // WoW 3.3.5 (win), SC 1.17
|
||||
// SNetDestroy(); // SC 1.17
|
||||
SEvtDestroy(); // WoW 3.3.5 (win)
|
||||
// SBltDestroy(); // SC 1.17
|
||||
// SCodeDestroy(); // SC 1.17
|
||||
// SCmdDestroy(); // WoW 3.3.5 (win+mac), SC 1.17
|
||||
// SFileDestroy(); // WoW 3.3.5 (mac)?, SC 1.17
|
||||
// SFile::Destroy(); // WoW 0.5.3 (win)?
|
||||
// SCompDestroy(); // WoW 3.3.5 (win)?
|
||||
SStrDestroy(); // WoW 3.3.5 (mac), SC 1.17
|
||||
// SRegDestroy(); // WoW 3.3.5 (mac)
|
||||
// SErrDestroy(); // WoW 3.3.5 (mac)
|
||||
// SLogDestroy(); // WoW 3.3.5 (mac)
|
||||
STransDestroy(); // SC 1.17
|
||||
return 1;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue