Fix condition for Windows-style DLL export
This commit is contained in:
parent
ffc7740cc2
commit
9f420e0e76
|
@ -31,7 +31,7 @@
|
|||
#ifndef IFSG_DEFS_H
|
||||
#define IFSG_DEFS_H
|
||||
|
||||
#if defined(__MINGW32__) || defined( MSVC )
|
||||
#if defined(_WIN32)
|
||||
#define APIEXPORT __declspec(dllexport)
|
||||
#define APIIMPORT __declspec(dllimport)
|
||||
#define APILOCAL
|
||||
|
|
Loading…
Reference in New Issue