2013-10-17 09:56:43 -04:00
|
|
|
/*
|
2019-08-02 23:10:55 -04:00
|
|
|
* Copyright (C) 2013-2015 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2013-10-17 09:56:43 -04:00
|
|
|
|
|
|
|
#ifndef __libmidi_libmidi_visibility_h__
|
|
|
|
#define __libmidi_libmidi_visibility_h__
|
|
|
|
|
2014-03-02 14:59:08 -05:00
|
|
|
#if defined(COMPILER_MSVC)
|
2013-10-17 09:56:43 -04:00
|
|
|
#define LIBMIDIPP_DLL_IMPORT __declspec(dllimport)
|
|
|
|
#define LIBMIDIPP_DLL_EXPORT __declspec(dllexport)
|
|
|
|
#define LIBMIDIPP_DLL_LOCAL
|
|
|
|
#else
|
2013-10-18 11:50:44 -04:00
|
|
|
#define LIBMIDIPP_DLL_IMPORT __attribute__ ((visibility ("default")))
|
|
|
|
#define LIBMIDIPP_DLL_EXPORT __attribute__ ((visibility ("default")))
|
|
|
|
#define LIBMIDIPP_DLL_LOCAL __attribute__ ((visibility ("hidden")))
|
2013-10-17 09:56:43 -04:00
|
|
|
#endif
|
|
|
|
|
2013-10-18 11:50:44 -04:00
|
|
|
#ifdef LIBMIDIPP_STATIC // libmidi is not a DLL
|
|
|
|
#define LIBMIDIPP_API
|
|
|
|
#define LIBMIDIPP_LOCAL
|
2013-10-17 09:56:43 -04:00
|
|
|
#else
|
2013-10-18 11:50:44 -04:00
|
|
|
#ifdef LIBMIDIPP_DLL_EXPORTS // defined if we are building the libmidi DLL (instead of using it)
|
|
|
|
#define LIBMIDIPP_API LIBMIDIPP_DLL_EXPORT
|
|
|
|
#else
|
|
|
|
#define LIBMIDIPP_API LIBMIDIPP_DLL_IMPORT
|
2015-10-04 14:51:05 -04:00
|
|
|
#endif
|
2013-10-18 11:50:44 -04:00
|
|
|
#define LIBMIDIPP_LOCAL LIBMIDIPP_DLL_LOCAL
|
2013-10-17 09:56:43 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __libmidi_libmidi_visibility_h__ */
|