Loading...
Searching...
No Matches
Go to the documentation of this file. 1#ifndef CAROTID_PLATFORM_H
2#define CAROTID_PLATFORM_H
4#ifndef CAROTID_NO_EXPORTS
7#if defined _WIN32 || defined __CYGWIN__
9#ifdef _CAROTID_LIB_NO_EXPORTS_
10#define CAROTID_LINKAGE __declspec(dllimport)
12#define CAROTID_LINKAGE __declspec(dllexport)
15#elif defined(CAROTID_EXPORTS) && defined(__GNUC__)
16#define CAROTID_LINKAGE __attribute__((visibility("default")))
19#ifndef CAROTID_LINKAGE
20#define CAROTID_LINKAGE
24#define CAROTID_DEPRECATED __attribute__((deprecated))
27#define CAROTID_DEPRECATED __declspec(deprecated)
29#define CAROTID_DEPRECATED