傢伙是代碼從一本書(Windows程序設計第五版)複製:無法鏈接Hello World!
#include <windows.h>
int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
PSTR szCmdLine, int iCmdShow)
{
MessageBox (NULL, TEXT ("Hello, Windows 98!"), TEXT ("HelloMsg"), 0) ;
return 0 ;
}
Link在其中推薦這本書的主題。 無法用VS2010進行編譯。我究竟做錯了什麼?
Error 1 error LNK2001: unresolved external symbol _WinMainCRTStartup
謝謝。
「無法編譯」不是對問題的有意義的描述。你是什麼「不能」?無法啓動VS2010?無法創建項目?獲取錯誤消息? *我們*應該怎麼知道你*做錯了什麼? – AnT 2010-04-27 18:57:37
你做了什麼來設置你的環境?你打印的事實是「你好,Windows 98!」擔心我......你可能會使用過時的資源。 – Pops 2010-04-27 18:58:30
@AndreyT在我的文章中有一個錯誤信息LNK2001 – 2010-04-27 19:00:34