problem with line styles

Good night to all,
I’m new in OpenGL, and i already faced with problem
I Cant enable changing line styles
<div class=“ubbcode-block”><div class=“ubbcode-header”>Click to reveal… <input type=“button” class=“form-button” value=“Show me!” onclick=“toggle_spoiler(this, ‘Yikes, my eyes!’, ‘Show me!’)” />]<div style=“display: none;”>
#include <GL/glut.h>

void init(void){
glClearColor(0.0,0.0,0.0,0.0);
glShadeModel(GL_FLAT);

}

void display(void){
int i;
glClear(GL_COLOR_BUFFER_BIT);
//белый цвет всех линий
glColor3f(1.0,1.0,1.0);
//3 линии разного вида
glEnable(GL_LINE_STRIPPLE);
glLineStripple(1,0x3F07);
}

void reshape(int w, int h){
glViewport(0,0,(GLsizei)w,(GLsizei)h);
glMatrixMode(GL_PROJECTION);
glLoadIdentity;
gluOrtho2D(0.0, (GLdouble) w, 0.0, (GLdouble) h);
}

main(int argc,char** argv)
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_SINGLE|GLUT_RGB);
glutInitWindowSize(400,150);
glutInitWindowPosition(100,100);
glutCreateWindow(argv[0]);
init();
glutDisplayFunc(display);
glutReshapeFunc(reshape);
glutMainLoop;
return 0;

}
[/QUOTE]</div>

VC informs me,that
glEnable(GL_LINE_STRIPPLE);
glLineStripple(1,0x3F07);
is incorrect
GL_LINE_STRIPPLE
“ident. undefined”
i have same warning for
glLineStripple

I use GLUT and VC 10.
And sorry for my English

It’s called “Stipple”. No ‘R’.

thank You =)