Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Visual Studio 2010 Express Edition 中编译 Visual C++ 应用程序,但将错误提示为“CUSTOMBUILD:错误:附加包含文件 afxhh.h”时失败。期待一些帮助来解决它....
Visual Studio 的 Express 版本不包括 MFC 库。您将无法编译依赖 MFC 标头的应用程序,例如afxhh.h.
afxhh.h
AFX(应用程序框架扩展)是 MFC 在开发期间的原始名称,该名称作为许多函数和头文件的前缀。
为了开发 MFC 应用程序,您需要购买完整版的 Visual Studio。