chore(style): clean up line endings in core

This commit is contained in:
fallenoak 2025-11-20 21:36:00 -06:00
parent aae54bed6b
commit 4c8fc4e7a9
2 changed files with 45 additions and 45 deletions

View file

@ -1,27 +1,27 @@
#include "Core.hpp" #include "Core.hpp"
#include "Event.hpp" #include "Event.hpp"
int32_t STORMAPI StormDestroy() { int32_t STORMAPI StormDestroy() {
// Combined list of all calls from every game // Combined list of all calls from every game
// SErrSetBlizzardErrorFunction(nullptr); // SErrSetBlizzardErrorFunction(nullptr);
// SDlgDestroy(); // SDlgDestroy();
// SGdiDestroy(); // SGdiDestroy();
// SVidDestroy(); // SVidDestroy();
// SDrawDestroy(); // SDrawDestroy();
// SRgnDestroy(); // SRgnDestroy();
// SMsgDestroy(); // SMsgDestroy();
// SNetDestroy(); // SNetDestroy();
SEvtDestroy(); SEvtDestroy();
// SBltDestroy(); // SBltDestroy();
// SCodeDestroy(); // SCodeDestroy();
// SCmdDestroy(); // SCmdDestroy();
// SFileDestroy(); // SFileDestroy();
// SCompDestroy(); // SCompDestroy();
// SStrDestroy(); // SStrDestroy();
// SRegDestroy(); // SRegDestroy();
// SErrDestroy(); // SErrDestroy();
// SLogDestroy(); // SLogDestroy();
// STransDestroy(); // STransDestroy();
return 1; return 1;
} }

View file

@ -1,18 +1,18 @@
#ifndef STORM_CORE_HPP #ifndef STORM_CORE_HPP
#define STORM_CORE_HPP #define STORM_CORE_HPP
#include <cstdint> #include <cstdint>
#ifndef STORMAPI #ifndef STORMAPI
#if defined(_MSC_VER) #if defined(_MSC_VER)
#define STORMAPI __stdcall #define STORMAPI __stdcall
#define STORMCDECL __cdecl #define STORMCDECL __cdecl
#else #else
#define STORMAPI #define STORMAPI
#define STORMCDECL #define STORMCDECL
#endif #endif
#endif #endif
int32_t STORMAPI StormDestroy(); int32_t STORMAPI StormDestroy();
#endif #endif