mirror of
https://github.com/thunderbrewhq/squall.git
synced 2026-02-04 08:59:07 +00:00
23 lines
362 B
C++
23 lines
362 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
|
|
|
|
#if !defined(WHOA_SYSTEM_WIN)
|
|
typedef void* HANDLE;
|
|
typedef void* LPOVERLAPPED;
|
|
#endif
|
|
|
|
int32_t STORMAPI StormDestroy();
|
|
|
|
#endif
|