I'm new to C/C++ coding on windows, and have had this error when running my code. A similar question was asked before which I will link below, however, this solution does not work for me because I do not have the option to change my character set.
argument of type const char* is incompatible with parameter of type "LPCWSTR"
Here is what my code looks like.
#include <Windows.h>
INT CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
PSTR lpCmdLine, INT nCmdShow)
{
OutputDebugString("Lets test this out \n");
return 0;
}