mirror of https://github.com/wolfpld/tracy.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
352 B
C
17 lines
352 B
C
#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__
|