Hi,
I hope it's not the wrong forum for my question...if so, then please forgive me.
The point: I use Visual C++ Enterprise and I want to draw a circle with openGl.
I can compile my circle.c but the linker is not quite amused about it and throws the (german only) exception:
--------------------Konfiguration: U1 - Win32 Debug--------------------
Linker-Vorgang läuft...
libcd.lib(wwincrt0.obj) : error LNK2001: Nichtaufgeloestes externes Symbol _wWinMain@16
Debug/U1.exe : fatal error LNK1120: 1 unaufgeloeste externe Verweise
Fehler beim Ausführen von link.exe.
U1.exe - 2 Fehler, 0 Warnung(en)
-----------------------------------------------------
What should I do?
thanks.
P.S. It's my first C++ program, so don't flame :-)
P.P.S
Here are the project properties:
-----------------------------
libcd.lib /nologo /entry:"wWinMainCRTStartup" /subsystem:windows /incremental:yes /pdb:"Debug/U1.pdb" /debug /machine:I386 /nodefaultlib:"libcmtd.lib" /nodefaultlib:"libcmt.lib" /nodefaultlib:"msvcrt.lib" /nodefaultlib:"msvcrtd.lib" /out:"Debug/U1.exe" /pdbtype:sept
-----------------------------



