Visual C++ 6.0

Im using Visual c++ 6 with OpenGl… How can I make the auto-completation works? I mean… on d3d… its just copy the files to the same folder… so when I press Ctrl+Space… it shows d3d functions… How do I active the OpenGl commands to this list?

Thanks

Ctrl/space works with members on C++ but OpenGL is C code so there are normally no members, but when you type the ‘(’ after an OpenGL function you should get a tooltip with the function prototype, at least I do, but this is on VC 7.

Mikael