本文介绍了使用Visual C ++ 2010Express构建MTserver时出错的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

#ifndef __AFX_H__
#define __AFX_H__

#ifndef __cplusplus
	#error MFC requires C++ compilation (use a .cpp suffix)
#endif

#pragma once

/////////////////////////////////////////////////////////////////////////////

#ifdef _DLL
#ifndef _AFXDLL
	#error Building MFC application with /MD[d] (CRT dll version) requires 
         MFC shared dll version. Please #define _AFXDLL or do not use /MD[d]
#endif
#endif


为什么?


WHY?

推荐答案


这篇关于使用Visual C ++ 2010Express构建MTserver时出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-22 19:42