I started a Single Doc/View MFC project and then wanted to convert it to UNICODE.
I've done this before and used what worked, however this time it failed with
LINK : fatal error LNK1561: entry point must be defined
Visual Studio 6
Settings for Win32Debug:
In Project/Settings/Link Category: Output the Entry-point synbol is set to wWinMainCRTStartup
In Project/Settings/C/C++: Category: General I replaced "_MBCS" with "UNICODE"
Settings for Win32 Release: Works ! Why does the debug setting fail !
In Project/Settings/Link Category: Output the Entry-point synbol is set to wWinMainCRTStartup
In Project/Settings/C/C++: Category: General I replaced "_MBCS" with "UNICODE"
What else do I need to do ?
Start Free Trial