DLL Problem

When I execute my program that uses GLUT it gives me an error that says, “The procedure entry point__glutInitWithExit could not be located in the dynamic link library glut32.dll.” And yes, I have the DLL in the directory of my program AND in the system folder. Any ideas would be appreciated thanks

My program launches glutInit(0, NULL);
glutEnterMainLoop(); and glutKeyboardFunc(myKeyboardFunc);

is your program linking glut32.lib properly?

from what I can tell it is. I went into the link menu and added it to the list. Is that correct? I also put the glut lib in the lib directory.

Your Glut version is too old and does’nt support the “glutInitWithExit”.

So, download a more recent one.

Ok hotdog, where can I find a newer one

Find it at:
http://www.xmission.com/~nate/glut.html

Rob.