CREATESTRUCT* creation

Started by
0 comments, last by Xersist 22 years, 2 months ago
Could someone explain why NeHe switched from the orginal base code window creation to the below source? (minus other code dependent on this code) Why the switch from everything in CreateWindowGL(...)? The OpenGL Game Programming book also does this. Any help would be great. Thanks!
      
...
case WM_CREATE:
{
	CREATESTRUCT* creation = (CREATESTRUCT*)(lParam);
	window = (GL_Window*)(creation->lpCreateParams);
	SetWindowLong (hWnd, GWL_USERDATA, (LONG)(window));
}
...
      
Edited by - xersist on January 31, 2002 11:01:35 PM Edited by - xersist on January 31, 2002 11:03:13 PM
-X-
Advertisement
Doesn''t anyone know? Any info on this would be appriciated. Yes this isn''t OpenGL related.

Thanks
-X-

This topic is closed to new replies.

Advertisement