Removed DLLIMPORT

This commit is contained in:
Tom Lally 2022-08-28 10:13:48 +01:00
parent fc407e509e
commit 3b5eb49469

View file

@ -245,10 +245,8 @@ typedef union _LARGE_INTEGER {
#if defined(_MSC_VER)
#define DLLEXPORT __declspec(dllexport)
#define DLLIMPORT __declspec(dllimport)
#elif defined(__GNUC__)
#define DLLEXPORT __attribute__((dllexport))
#define DLLIMPORT __attribute__((dllimport))
#else
#error No definition for DLLEXPORT and DLLIMPORT
#endif