/*
 *  gensio - A library for abstracting stream I/O
 *  Copyright (C) 2018  Corey Minyard <minyard@acm.org>
 *
 *  SPDX-License-Identifier: LGPL-2.1-only
 */

#ifndef GENSIOCPP_DLLVISIBILITY
#define GENSIOCPP_DLLVISIBILITY

#if defined _WIN32 || defined __CYGWIN__
  #ifdef BUILDING_GENSIOCPP_DLL
    #ifdef __GNUC__
      #define GENSIOCPP_DLL_PUBLIC __attribute__ ((dllexport))
    #else
      #define GENSIOCPP_DLL_PUBLIC __declspec(dllexport) // Note: actually gcc seems to also supports this syntax.
    #endif
  #else
    #ifdef __GNUC__
      #define GENSIOCPP_DLL_PUBLIC __attribute__ ((dllimport))
    #else
      #define GENSIOCPP_DLL_PUBLIC __declspec(dllimport) // Note: actually gcc seems to also supports this syntax.
    #endif
  #endif
  #define GENSIOCPP_DLL_LOCAL
#else
  #if __GNUC__ >= 4
    #define GENSIOCPP_DLL_PUBLIC __attribute__ ((visibility ("default")))
    #define GENSIOCPP_DLL_LOCAL  __attribute__ ((visibility ("hidden")))
  #else
    #define GENSIOCPP_DLL_PUBLIC
    #define GENSIOCPP_DLL_LOCAL
  #endif
#endif

#endif /* GENSIOCPP_DLLVISIBILITY */
