windef.h(142) : warning C4114: same type qualifier used more than once
카테고리 없음 / 2016. 7. 23. 01:00
windef.h(142) : warning C4114: same type qualifier used more than once
//WINDEF.H
typedef unsigned long DWORD; <<--- 여기가 문제
원인 : 다른 파일에서 아래 문장을 사용해서 발생
#define DWORD unsigned long
해결방법
소스파일에서 #include 순서 조정.