squall/storm/Core.hpp
2025-10-07 22:03:04 -05:00

18 lines
292 B
C++

#ifndef STORM_CORE_HPP
#define STORM_CORE_HPP
#include <cstdint>
#ifndef STORMAPI
#if defined(_MSC_VER)
#define STORMAPI __stdcall
#define STORMCDECL __cdecl
#else
#define STORMAPI
#define STORMCDECL
#endif
#endif
int32_t STORMAPI StormDestroy();
#endif