Advertisement

VISUAL C++ 6 Compile error!!!

Started by September 01, 1999 09:39 AM
1 comment, last by acw83 25 years, 3 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

LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main WHAT'S THIS??? THANKS!!!
Advertisement
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