chore(build): mark all API functions with calling convention (#69)

This commit is contained in:
Adam Heinermann 2025-10-05 20:27:01 -07:00 committed by GitHub
parent dc9f9c1958
commit 4fa6599807
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 220 additions and 207 deletions

17
storm/Core.hpp Normal file
View file

@ -0,0 +1,17 @@
#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
#endif