summaryrefslogtreecommitdiffhomepage
path: root/opentrack-compat/import.hpp
blob: 3747b1412476345ee5d51e23f23801d89ca1749f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#ifndef OPENTRACK_EXPORT
#   ifdef _WIN32
#       define OPENTRACK_LINKAGE __declspec(dllimport)
#   else
#       define OPENTRACK_LINKAGE
#   endif

#   ifndef _MSC_VER
#       define OPENTRACK_EXPORT __attribute__ ((visibility ("default"))) OPENTRACK_LINKAGE
#   else
#       define OPENTRACK_EXPORT OPENTRACK_LINKAGE
#   endif
#endif