Link to home
Start Free TrialLog in
Avatar of memilavi
memilavi

asked on

Non-understandable error message

Hi!
I'm a novice programmer in C++, and I'm trying to create a small project in VC++ 6.0.
I'm getting a strange error message and I can't figure out what to do. The message I get is:
--------------------Configuration: tifzoret - Win32 Debug--------------------
Linking...
LIBCD.lib(wwincrt0.obj) : error LNK2001: unresolved external symbol _wWinMain@16
Debug/tifzoret.exe : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.

------------------------------------
What should I do now?

PLEASE HELP, IT'S URGENT!
ASKER CERTIFIED SOLUTION
Avatar of nietod
nietod

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of nietod
nietod

The solution is to create a new project of the right type.

Chose the "File" menu
"New" item
From the dialog that appears, select the "projects" tab
then chose the "Win32 Console Application"
Then fill in the project name and location.

You can copy the source code from the old project to the new one and then it shoudl compile okay.

let me know if you have any questions.

Avatar of memilavi

ASKER

Thanks! It worked great!