c++ win32控制台的程序怎么改成win32应用程序???

2024-11-06 00:49:36
推荐回答(3个)
回答1:

#pragma comment(linker, "/entry:WinMainCRTStartup /subsystem:windows")

加上这句就是win32应用程序了 ,你的主函数必须是 int WINAPI WinMain()

当然如果用main函数的话 可以写这样写

#pragma comment(linker, "/entry:mainCRTStartup /subsystem:windows")
我是菜鸟,希望能帮到你,观楼主英俊潇洒,风流倜傥,必当世豪杰,诚邀加入0x30百度贴吧,共商义举,建不世之功!

回答2:

直接在工程里,创建一个Win32项目,然后选择Win32应用程序,点击OK后,开发工具就自动给你生成了_tWinMain函数,在这个函数里完成你的调用就好了。

下面这个就是自动生成的_tWinMain函数:

int APIENTRY _tWinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
UNREFERENCED_PARAMETER(hPrevInstance);
UNREFERENCED_PARAMETER(lpCmdLine);

// TODO: 在此放置代码。
MSGmsg;
HACCELhAccelTable;

// 初始化全局字符串
LoadString(hInstance,IDS_APP_TITLE, szTitle, MAX_LOADSTRING);
LoadString(hInstance,IDC_MY1, szWindowClass, MAX_LOADSTRING);
MyRegisterClass(hInstance);

// 执行应用程序初始化:
if(!InitInstance (hInstance, nCmdShow))
{
returnFALSE;
}

hAccelTable= LoadAccelerators(hInstance, MAKEINTRESOURCE(IDC_MY1));

// 主消息循环:
while(GetMessage(&msg, NULL, 0, 0))
{
if(!TranslateAccelerator(msg.hwnd, hAccelTable, &msg))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}

return(int) msg.wParam;
}

回答3:

你别改应用程序的main函数名字啊。你复制其他的进去就可以了