::CreateWindow()
::SetWindowText()
1.对于直接调用Windows API函数,基本上所有的窗口API函数都是定义在windows.h文件中,MFC调用API函数时,只用在函数前面加两个冒号就可以了。
::CreateWindow()
::SetWindowText()
2.对陵枝于封装了悔誉API函数的MFC 来说,直接碧汪段用MFC自己相关的函数就可以调用了。因为MFC封装了Windows API函数,加以扩展形成了自己的类。
这些都是MFC直接调用API函数的语法。
MFC中程序的入口是WinMain函数,这是一个WINAPI函数,是在APPMODUL.CPP中定义的,这个文件在VC6.0的安装目录下。你闹逗调试MFC程序时,点击Restart按钮(Ctrl+Shift+F5),就会进入该函数。
//////////前弯团///////////////////////////////////////////////慧橘////////////////////
//
export
WinMain
to
force
linkage
to
this
module
extern
int
AFXAPI
AfxWinMain(HINSTANCE
hInstance
,
HINSTANCE
hPrevInstance,
LPTSTR
lpCmdLine,
int
nCmdShow)
extern
"C"
int
WINAPI
_tWinMain(HINSTANCE
hInstance,
HINSTANCE
hPrevInstance,
LPTSTR
lpCmdLine,
int
nCmdShow)
{
//
call
shared/exported
WinMain
return
AfxWinMain(hInstance,
hPrevInstance,
lpCmdLine,
nCmdShow)
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)