Adding more definitions.

This commit is contained in:
Creeper Lv
2026-04-11 14:55:25 +08:00
parent d34c74f617
commit b35596a19a
5 changed files with 90 additions and 28 deletions
+12
View File
@@ -0,0 +1,12 @@
#ifndef _SAGITTARIUS_BASE_H_
#define _SAGITTARIUS_BASE_H_
#ifdef _WIN32
#define SAGITTARIUS_API __declspec(dllexport)
#define internal
#else
#define SAGITTARIUS_API __attribute__((visibility("default")))
#define internal __attribute__((visibility("hidden")))
#endif
#endif