X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=freeglut-1.3%2Ffreeglut_cursor.c;h=9d519c04141f4869b5dd12b8921c964c8fb8d905;hb=2c52e17121abf4888117ab6b1c94be48ebd569c5;hp=ed67eff4b6aa269e732b72b6264b3403da510b5b;hpb=325b6327a5df4c476789ac5a329031677f3ca59b;p=freeglut diff --git a/freeglut-1.3/freeglut_cursor.c b/freeglut-1.3/freeglut_cursor.c index ed67eff..9d519c0 100644 --- a/freeglut-1.3/freeglut_cursor.c +++ b/freeglut-1.3/freeglut_cursor.c @@ -111,11 +111,11 @@ void FGAPIENTRY glutSetCursor( int cursorID ) /* * This is a temporary solution only... */ - // Set the cursor AND change it for this window class. + /* Set the cursor AND change it for this window class. */ # define MAP_CURSOR(a,b) case a: SetCursor( LoadCursor( NULL, b ) ); \ SetClassLong(fgStructure.Window->Window.Handle,GCL_HCURSOR,(LONG)LoadCursor(NULL,b)); \ break; - // Nuke the cursor AND change it for this window class. + /* Nuke the cursor AND change it for this window class. */ # define ZAP_CURSOR(a,b) case a: SetCursor( NULL ); \ SetClassLong(fgStructure.Window->Window.Handle,GCL_HCURSOR,(LONG)NULL); \ break; @@ -132,7 +132,7 @@ void FGAPIENTRY glutSetCursor( int cursorID ) MAP_CURSOR( GLUT_CURSOR_WAIT, IDC_WAIT ); MAP_CURSOR( GLUT_CURSOR_TEXT, IDC_UPARROW ); MAP_CURSOR( GLUT_CURSOR_CROSSHAIR, IDC_CROSS ); - //MAP_CURSOR( GLUT_CURSOR_NONE, IDC_NO ); + /* MAP_CURSOR( GLUT_CURSOR_NONE, IDC_NO ); */ ZAP_CURSOR( GLUT_CURSOR_NONE, NULL ); default: