Visual C++ 2008 Feature Pack 사용시 오류
Posted by Go crazy for anything that will make you smile.
출처 : http://blog.naver.com/astrya/140051681865 Feature pack 설치 후 최초 실행시 지정된 파일을 찾을 수 없다는 에러가 나올 수 있다.. 아마도 eror C1189 를 뿌릴것이다. 한글판 메세지는 모르겠다.. 현재는 영문판만 FP가 지원되니.. "Your version of the Windows SDK is earlier than 6.0. Try setting the 'WINVER' and '_WIN32_WINNT' definitions in your project to less than 0x0600." 이 현상은 stdafx.h 에 아래 두줄 추가로 해결이 된다. #define WINVER 0x0501 #define _WIN32_WINNT 0x0501 20..