1. 程式人生 > >WINDOWS.H already included. MFC apps must not #i

WINDOWS.H already included. MFC apps must not #i

MFC win32

場景

在win32工程中,使用MFC,選擇MFC的使用方式:在共享 DLL 中使用 MFC,在調用CString的時候,出現如下的錯誤:

c:\program files (x86)\microsoft visual studio 14.0\vc\atlmfc\include\afxv_w32.h(16): fatal error C1189: #error: WINDOWS.H already included. MFC apps must not #include <windows.h>


解決方案

在預編譯頭文件stdafx.h文件中

添加如下的定義

#pragma once


#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // 某些 CString 構造函數將是顯式的


#include <afxwin.h> // MFC 核心組件和標準組件

#include <afxext.h> // MFC 擴展


WINDOWS.H already included. MFC apps must not #i