Development/C/C++
VC++ Error message WINVER not defined. Defaulting to 0x0501 (Windows XP and Windows .NET Server)
키르히아이스
2011. 8. 13. 15:06
This message is being caused because the StdAfx.h include for your project does not have the constant
WINVER #defined. Add this to stdafx.h as follows:
#define WINVER 0x0400
0x0501 is for Windows XP and .NET Server. 0x0400 is the lowest OS version your application will support.
In this case Windows 2000.
===========================================================================================
WINVER not defined. Defaulting to 0x0501 (Windows XP and Windows .NET Server)
컴파일 시 위와같은 에러 메시지가 나오면 XP 아래 버전에서는 해당 프로그램을 사용 할 수 없다라는 말인듯...