C++ Linking Error. Can't go further . . .

Started by
2 comments, last by eiro 23 years, 6 months ago
The VC++ newbee found error when linking DirectDraw7 example file. Debug window said: LIBCD.lib(crt0.obj):error LNK2001: unresolved external symbol _main I used: LRESULT CALLBACK WinProc( . . . and int WINAPI WinMain( . . . what''s wrong with them? Thx
e i r o
Advertisement
It seems to me that the compiler is looking for a main-function
but can''t find it in your code.
Are you sure that you creates a Win32 application and not a Win32 Console Application when you created your project??

Good luck!
/Derwiath
------------------------------- Derwiath -
Thanks a lot.

I thing I toke the wrong app. project ^_^
I''ll remember that big mistake.
e i r o
You''re trying to compile a win32 application in a console application envirnment. I did that on accident not to long ago .

This topic is closed to new replies.

Advertisement