gl.h included before glew, but GLFW needs gl.h
问题 I remember that the way you order your #include-s matter. Well, I'm in a bit on trouble. I have these two headers: #include <gl/glfw.h> #include <gl/glew.h> If I run that, I get an error saying that gl.h is included before glew.h. But If I reverse the order of those two so that glew.h is first, I get a LOT of errors. I was just thinking of hunting down what the #define-s mean so I could just say for me: #define whatineed 0x0000x. How can I fix this problem with the headers arrangement. Is the