mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-24 22:27:36 +01:00
when mingw is mingw64, it appears that we need to use __declspec() and not __attribute__((visibility)) for export control
This commit is contained in:
parent
597db6421a
commit
19395ac258
9 changed files with 9 additions and 9 deletions
|
|
@ -20,7 +20,7 @@
|
|||
#ifndef __libtimecode_visibility_h__
|
||||
#define __libtimecode_visibility_h__
|
||||
|
||||
#if defined(COMPILER_MSVC)
|
||||
#if defined(COMPILER_MSVC) || defined(__MINGW64__)
|
||||
#define LIBTIMECODE_DLL_IMPORT __declspec(dllimport)
|
||||
#define LIBTIMECODE_DLL_EXPORT __declspec(dllexport)
|
||||
#define LIBTIMECODE_DLL_LOCAL
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue