mirror of
https://github.com/thunderbrewhq/squall.git
synced 2026-02-04 00:49:08 +00:00
chore(build): mark all API functions with calling convention (#69)
This commit is contained in:
parent
dc9f9c1958
commit
4fa6599807
15 changed files with 220 additions and 207 deletions
17
storm/Core.hpp
Normal file
17
storm/Core.hpp
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue