help me!!!

I am a beginners.And My problrm is as followes:
when I linking my Opengl codes in VC++6.0. I meet
the results:
-------------------------------------------------Linking…
TriangleView.obj : error LNK2001: unresolved external symbol _auxSolidSphere@8
TriangleView.obj : error LNK2001: unresolved external symbol _auxWireSphere@8
TriangleView.obj : error LNK2001: unresolved external symbol _auxWireCube@8
.\Triangle/Triangle.exe : fatal error LNK1120: 3 unresolved externals
Error executing link.exe.

Triangle.exe - 4 error(s), 0 warning(s)

what can i do?

Have you included GLAux.h header file ?

looks like a linker error …

did you include the appropriate libs and/or dlls ?

try the project’s settings or do

#pragma comment(lib, “library_name_goes_here.lib”)

oh!I get it!
Thank you ,enmaniac and powerpad, just as what you said, i haven’t include glaux.lib.Now it’s ok!
Thanks again!