summaryrefslogtreecommitdiffhomepage
path: root/opentrack/import.hpp
blob: 7448416acf4969b1d9a79c6def4d96f5b3e2bf51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#ifdef _WIN32
#    define OPENTRACK_API_LINKAGE __declspec(dllimport)
#else
#    define OPENTRACK_API_LINKAGE
#endif

#ifndef _MSC_VER
#    define OPENTRACK_API_EXPORT __attribute__ ((visibility ("default"))) OPENTRACK_API_LINKAGE
#else
#    define OPENTRACK_API_EXPORT OPENTRACK_API_LINKAGE
#endif