Browse Source

Fix condition for Windows-style DLL export

pull/12/head
Simon Richter 10 years ago
committed by Chris Pavlina
parent
commit
9f420e0e76
  1. 2
      include/plugins/3dapi/ifsg_defs.h

2
include/plugins/3dapi/ifsg_defs.h

@ -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…
Cancel
Save