OpenGl.dll library missing something??

I’m running a basic OpenGl program using Glut. Everything compiles correctly and I can build my project (in VC++ 6.0).

But when I run the exe I get this message:

“Error Starting Program: The GLUT.DLL file is linked to missing export OPENGL.DLL:SetPizelFormat.”

I am using Glut 3.7, date 8/18/98. Also, my opengl.dll is dated 7/29/96.

Anyone know what gives??

Thanks in advance,
-bbarran

You’re linking to SGIs opengl implementation. You should either link with Opengl32.lib instead of opengl.lib or get SGIs opengl.dll

Thanks, I found the opengl.dll from SGI and it works fine.