I have a small C++ program for Win32, which has the following WinMain:
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
when trying to compile for x64, I get the following error:
error LNK2019: unresolved external symbol WinMain referenced in function __tmainCRTStartup
What steps must be taken to recompile a simple win32 app for x64?
Thank you