Points: include header with export macros

This commit is contained in:
wmayer
2022-03-24 20:46:47 +01:00
parent d16ce3759f
commit 924d779fc7
10 changed files with 41 additions and 65 deletions

View File

@@ -26,13 +26,6 @@
#include <FCConfig.h>
// Exporting of App classes
#ifdef FC_OS_WIN32
# define PointsExport __declspec(dllexport)
#else // for Linux
# define PointsExport
#endif
// here get the warnings of too long specifiers disabled (needed for VC6)
#ifdef _MSC_VER
# pragma warning( disable : 4181 )

View File

@@ -26,15 +26,6 @@
#include <FCConfig.h>
// Importing of App classes
#ifdef FC_OS_WIN32
# define PointsExport __declspec(dllimport)
# define PointsGuiExport __declspec(dllexport)
#else // for Linux
# define PointsExport
# define PointsGuiExport
#endif
#ifdef FC_OS_WIN32
# ifndef NOMINMAX
# define NOMINMAX