我收到此错误:
cannot convert parameter 2 from 'const char [14]' to 'LPCWSTR'
使用下面的代码。它应该是 C,但最好的 Visual Studio 2012 提供了一个空的 C++ 项目:
#include "windows.h"
int WINAPI WinMain (HINSTANCE hinst, HINSTANCE hprevinst, LPSTR cmdline, int showcmd)
{
MessageBox(NULL, "Merhaba Dunya", "Merhaba", MB_OK);
return 0;
}
什么是不正确的?