OpenGL window isn't opening
I have code from the OpenGLBook (openglbook.com) which compiles, but does not load. I have absolutely no idea why it's not loading. The code is as follows: main.cpp #include "main.h" /// Methods /// ----------------------------- int main(int argc, char* argv[]) { Initialize(argc, argv); glutMainLoop(); exit(EXIT_SUCCESS); } main.h #ifndef main_h #define main_h #include <cstdlib> #include <cstdio> #include <cstring> #include <GL/glew.h> #include <GL/freeglut.h> #define WINDOW_TITLE_PREFIX "CHAPTER 1" void Initialize(int, char*[]); void InitWindow(int, char*[]); void ResizeFunction(int, int);