Linking Errors! Please Help!

I’m a new user to OPENGL
I’m using a new version of GLUT
I’m working on Windows 2000
I got the following linking errors:
first.obj : error LNK2001: unresolved external symbol __fltused
first.obj : error LNK2001: unresolved external symbol __chkesp
LINK : error LNK2001: unresolved external symbol _mainCRTStartup
Please help!

Try to include in your project the files that contains the implementation/deifnition of that functions.
Also check to include windows.h and the kind of your project, 16 bit projects needs main(…) while 32 bit projects needs WinMain(…)

hope it helps…

rIO.sK