Malil Developers
В случае библиотек DLL Windows существует определенное различие между _ _ declspec(dllexport) и __declspec (dllimport), dllexport должен использоваться при компиляции библиотеки DLL, dllimport должен использоваться при компиляции программ, которые ссылаются на эту библиотеку DLL. Стандартный способ определить это будет с помощью макроса.
Ниже приведен пример visual studio
// The following ifdef block is the standard way of creating macros which make exporting
// from a DLL simpler. All files within this DLL are compiled with the DLL_EXPORTS
// symbol defined on the command line. this symbol should not be defined on any project
// that uses this DLL. This way any other project whose source files include this file see
// DLL_API functions as being imported from a DLL, whereas this DLL sees symbols
// defined with this macro as being exported.
#ifdef DLL_EXPORTS
#define DLL_API __declspec(dllexport)
#else
#define DLL_API __declspec(dllimport)
#endif