‘_WIN32_WINNT not defined. Defaulting to _WIN32_WINNT_MAXVER’
위와 같은 경고가 발생하는 경우, stdafx.h를 열고, include가 되기 전 최 상위에 'SDKDDKVer.h’를 추가한다.
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
#include <SDKDDKVer.h>
#include <afxwin.h> // MFC core and standard components
0 댓글