mirror of
https://github.com/slendidev/lunar.git
synced 2026-01-31 00:38:59 +02:00
16
subprojects/tracy/public/common/TracyApi.h
Normal file
16
subprojects/tracy/public/common/TracyApi.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef __TRACYAPI_H__
|
||||
#define __TRACYAPI_H__
|
||||
|
||||
#if defined _WIN32
|
||||
# if defined TRACY_EXPORTS
|
||||
# define TRACY_API __declspec(dllexport)
|
||||
# elif defined TRACY_IMPORTS
|
||||
# define TRACY_API __declspec(dllimport)
|
||||
# else
|
||||
# define TRACY_API
|
||||
# endif
|
||||
#else
|
||||
# define TRACY_API __attribute__((visibility("default")))
|
||||
#endif
|
||||
|
||||
#endif // __TRACYAPI_H__
|
||||
Reference in New Issue
Block a user