C1189: #error : WINDOWS.H already included. MFC apps must not #include <windows.h>
Programming/C,CPP,CS 2016. 3. 18. 09:54336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
위의 문제는 컴파일 시에 일어나는 단순한 링크 타이밍의 문제입니다.
인클루드의 순서를 바꾸어 주는 것으로 해결 가능하지요.
기존 링크 순서는 아래와 같았습니다.
#include <xxxx.h>
#include <xxxx.h>
#include "stdafx.h"
이것을 아래와 같이 바꾸어 주어서 해결했습니다.
#include "stdafx.h"
#include <xxxx.h>
#include <xxxx.h>
'Programming > C,CPP,CS' 카테고리의 다른 글
윈도우간 통신 SendMessage() 와 PostMessage(), PostThreadMessage() (0) | 2016.03.24 |
---|---|
CFile 클래스 (0) | 2016.03.18 |
CStdString 표준 C++ 을 사용한 CString C/C++ (0) | 2016.03.17 |
Visual Studio 6.0 C++ 불러오기 오류(msdev.exe) (0) | 2016.03.15 |
Winpcap Tes 09 (0) | 2016.03.07 |