Fix condition for Windows-style DLL export

This commit is contained in:
Simon Richter 2016-04-06 22:41:07 -04:00 committed by Chris Pavlina
parent ffc7740cc2
commit 9f420e0e76
1 changed files with 1 additions and 1 deletions

View File

@ -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