glVeiwport(0,0,h,w);

Im having a problem with vc++ 6.0, i keep getting the error:
error C2065: ‘glVeiwport’ : undeclared identifier
and this is what the line says…
glVeiwport(0, 0, w, h);
so… please help me!!!
thanks

hey ppls sorry, stupid mistake, glVeiwport(0,0,h,w); was supposed to be glViewport(0,0,h,w);
sorry

Make sure that you #include <GL/gl.h> and link to opengl32.lib.

Nate Miller