风过无痕1989 发表于 2020-9-26 12:59:52

程序出现链接错误

第一个windows程序就不顺,编译正常,出现链接错误,错误提示( VC++6.0编译 )如下:

LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/第一个Windows程序1.exe : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.

程序代码如下:

// 第一个Windows程序1.cpp : Defines the entry point for the application.


#include <windows.h>
#include <tchar.h>

int WINAPI _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow)
{
    MessageBox(NULL, _T("这是我在鱼C论坛的第一个Windows程序!"), _T("提示"), MB_OK);
        return 0;
}

风过无痕1989 发表于 2020-9-27 00:43:22

此问题不劳大咖了,我自己已经解决了
页: [1]
查看完整版本: 程序出现链接错误