_WIN32_WINNT settings conflicts with _WIN32_IE settings

Keep Open and Learning
Post Reply
星际浪子
Posts: 3597
Joined: 01 May 2009 23:45

_WIN32_WINNT settings conflicts with _WIN32_IE settings

Post by 星际浪子 » 19 Aug 2011 09:18

在stdafx.h中添加如下代码,或者在项目属性中设置。


#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0501
#endif
#ifndef _WIN32_IE
#define _WIN32_IE 0x0500
#endif

Post Reply