I am trying to make a simple Message Box in C in Visual Studio 2012, but I am getting the following error messages
argument of type const char* is incompatible with parameter of type "LPCWSTR"
err LNK2019:unresolved external symbol_main referenced in function_tmainCRTStartup
Here is the source code
#include<Windows.h>
int _stdcall WinMain(HINSTANCE hinstance,HINSTANCE hPrevinstance,LPSTR lpszCmdline,int nCmdShow)
{
MessageBox(0,"Hello","Title",0);
return(0);
}
Please Help
Thanks and Regards
I recently ran in to this issue and did some research and thought I would document some of what I found here.
To start, when calling
MessageBox(...)
, you are really just calling a macro (for backwards compatibility reasons) that is calling eitherMessageBoxA(...)
for ANSI encoding orMessageBoxW(...)
for Unicode encoding.So if you are going to pass in an ANSI string with the default compiler setup in Visual Studio, you can call
MessageBoxA(...)
instead:Full documentation for
MessageBox(...)
is located here: https://msdn.microsoft.com/en-us/library/windows/desktop/ms645505(v=vs.85).aspxAnd to expand on what @cup said in their answer, you could use the
_T()
macro and continue to useMessageBox()
:The
_T()
macro is making the string "character set neutral". You could use this to setup all strings as Unicode by defining the symbol_UNICODE
before you build (documentation).Hope this information will help you and anyone else encountering this issue.
To compile your code in Visual C++ you need to use Multi-Byte char WinAPI functions instead of Wide char ones.
Set Project -> Properties -> General -> Character Set option to Use Multi-Byte Character Set
I found it here https://stackoverflow.com/a/33001454/5646315
To make your code compile in both modes, enclose the strings in _T() and use the TCHAR equivalents