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

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

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