在VS2005中建立WIN32程序的空项目.
#include <windows.h>
int WINAPI WinMain(
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPWSTR lpCmdLine,
int nShowCmd
)
{
MessageBox(NULL,"hELLO","HELLO",MB_OK);
return 0;
}
出错了
正在编译...
Finish.cpp
./Finish.cpp(10) : error C2664: 'MessageBoxW' : cannot convert parameter 2 from 'const char [6]' to 'LPCWSTR'
Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
生成日志保存在“file://f:/Inside MFC/Finish/Finish/Release/BuildLog.htm”
Unicode的问题
右击项目--->属性---->常规
在右边的项目默认值
字符集 改为 未设置
重新编译
正在编译...
Finish.cpp
./Finish.cpp(9) : error C2731: 'WinMain' : function cannot be overloaded
./Finish.cpp(3) : see declaration of 'WinMain'
这下可难住我了,我明明就定义了一个,而且我是从MSDN直接拷的,怎么会说我重载了呢.
百度了,没这方面的资料.
头痛.百思不得其解,群里有人提示 LPWSTR lpCmdLine.多了个W.
果真如此.LPWSTR是支持宽字符的.
修改,编译如下
#include <windows.h>
int WINAPI WinMain(
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nShowCmd
)
{
MessageBox(NULL,"hELLO","HELLO",MB_OK);
return 0;
}
成功了,没想到就这么一个小小的细节.耗了我半个多小时.
后来只是想想原因,是自己拷贝MSDN上的东西时,没注意.