我正在尝试为我在Visual Studio中创建的类生成DLL导入源。但是,我的编译器不喜欢以下行:
class AFCDLL_API ICrc
当我将鼠标悬停在AFCDLL_API上时,它说:
#define AFCDLL_API __declspec(dllimport)预期为';'
我不明白这意味着什么以及如何解决。有人可以帮忙吗?
#include "AfcDll.h"
class AFCDLL_API ICrc
{
public:
public:
ICrc() {};
~ICrc() {};
private:
ICrc(const ICrc& ICrc); // Not implemented.
const ICrc& operator=(const ICrc& ICrc); // Not implemented.
};