Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'common/TracyApi.h')
-rw-r--r--common/TracyApi.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/common/TracyApi.h b/common/TracyApi.h
deleted file mode 100644
index f396ce0c..00000000
--- a/common/TracyApi.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#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__