Win32控制台程式如何獲取MFC庫支援

2021-06-02 14:31:27 字數 1159 閱讀 3666

here i am using project name as 

and ide is 

visual studio 2008

.open your project.

in configuration properties -> general -> use of mfc, select use mfc in a shared dll option.

add the following line in your stdafx.h file.

#define _atl_cstring_explicit_constructors      //

some cstring constructors will be explicit

#ifndef vc_extralean

#define vc_extralean //

exclude rarely-used stuff from windows headers

#endif

#include

<

afx.h

>

#include

<

afxwin.h

> // mfc core and standard components

#include

<

afxext.h

> // mfc extensions

#ifndef _afx_no_ole_support

#include

<

afxdtctl.h

> // mfc support for internet explorer 4 common controls

#endif

#ifndef _afx_no_afxcmn_support

#include

<

afxcmn.h

> // mfc support for windows common controls

#endif

//_afx_no_afxcmn_support

#include

<

iostream

>

win32視窗程式轉為控制台

windows支援兩種型別的程式,gui graphical user inte ce 和cui console user inte ce 他們是通過乙個叫載入器的東西進行載入,vs中只要修改聯結器 系統 子系統中的值,如果是gui則是 subsystem windows 如果是cui則是 subs...

Win32視窗程式使用控制台

win32視窗程式使用控制台對應的函式是allocconsole和freeconsole。向控制台輸出 allocconsole handle hd getstdhandle std output handle writeconsole hd hello console n sizeof hello...

win32控制台 win32工程 MFC工程的區別

空專案 控制台 問2個問題即可。1.控制台 vs win32 mfc?嗯,有不有臉?有臉,選win32或mfc。沒有臉,選控制台。臉就是視窗,就是window.s 這個有臉 這個沒臉 控制台與win32 mfc 互動方式的不同,前者是cml 命令模式 後者是gui 使用者介面 2.mfc vs wi...