Where Can I Get Opengl.dll?

My small Visual
C++ program (created as Win32 application)
with embedded OpenGL code, compiles and links OK. But, when I attempt to execute it, I get an immediate error stating: “OPENGL.dll could not be found”

I get this error even before InitInstance is called. Does Opengl.dll exist? If so, where can I download it from?

Any help is very appreciated!

Link with opengl32.lib instead of opengl.lib.

Bob, I’m already linking with opengl32.lib in my project settings. Any other ideas?

Originally posted by Bob:
Link with opengl32.lib instead of opengl.lib.

If you used glut, just link the glut32.lib instead of glut.lib; I got the same problem before…