This commit is contained in:
Martin Slachta
2026-07-18 14:31:15 +02:00
commit a04f0dc262
3343 changed files with 1140208 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
#ifndef __TRACYAPI_H__
#define __TRACYAPI_H__
#if defined _WIN32
# if defined TRACY_EXPORTS
# if defined(__clang__)
# define TRACY_API __declspec(dllexport) __attribute__((visibility("default")))
# else
# define TRACY_API __declspec(dllexport)
# endif
# elif defined TRACY_IMPORTS
# if defined(__clang__)
# define TRACY_API __declspec(dllimport) __attribute__((visibility("default")))
# else
# define TRACY_API __declspec(dllimport)
# endif
# else
# if defined(__clang__)
# define TRACY_API __attribute__((visibility("default")))
# else
# define TRACY_API
# endif
# endif
#else
# define TRACY_API __attribute__((visibility("default")))
#endif
#endif // __TRACYAPI_H__