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

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

#ifndef _MSC_VER
#    define OPENTRACK_CSV_EXPORT __attribute__ ((visibility ("default"))) OPENTRACK_CSV_LINKAGE
#else
#    define OPENTRACK_CSV_EXPORT OPENTRACK_CSV_LINKAGE
#endif