aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/170 generator link whole/export.h
blob: f4f6f451b71da773a3ad80ff47c9d3e40739b141 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#if defined BUILDING_EMBEDDED
  #define DLL_PUBLIC
#elif defined _WIN32 || defined __CYGWIN__
  #if defined BUILDING_DLL
    #define DLL_PUBLIC __declspec(dllexport)
  #else
    #define DLL_PUBLIC __declspec(dllimport)
  #endif
#else
  #if defined __GNUC__
    #define DLL_PUBLIC __attribute__ ((visibility("default")))
  #else
    #pragma message ("Compiler does not support symbol visibility.")
    #define DLL_PUBLIC
  #endif
#endif