VISUAL C++ 6 Compile error!!!

Started by
1 comment, last by acw83 24 years, 7 months ago
Hey, that means that you need to put the VC++ CD in the cd drive, because the compiler needs some files off of the cd.


hehehe, Your Welcome,
Later
Da_KiD

Advertisement
LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main WHAT'S THIS??? THANKS!!!
Uh, no, it has absolutely nothing to do with that.

What it probably means is you are compiling this as a Win32 or MFC application, and your program includes a main() function. main functions don't exist in Windows programs, they are replaced with WinMain(). If you are trying to make a DOS program, you need to create it as a Win32 Console application.

This topic is closed to new replies.

Advertisement