I am trying to use the CRect to create a rectangle.
While compiling the below mentioned Code
#include <windows.h>
#include <atltypes.h>
CRect rectRgn;
int main()
{
///////////// some line of code
}
我收到了链接器错误。 错误LNK2019:未解析的外部符号“public:__thiscall CRect :: CRect(void)”(?? 0CRect @@ QAE @ XZ)在函数“void __cdecl`startor初始化器中为'rectRgn''(void)”引用“(?? __ ErectRgn @@ YAXXZ)
以下是MSDN在CRect上的链接。 https://msdn.microsoft.com/en-us/library/9y3502k0.aspx 我已经包含了atltypes.h标题。 请提供您的意见。 提前谢谢。