The OpenGL (simple) Framework or GLFW is a static library which can be linked to your Win32 application to simplify the process needed to create and setup a window suitable to render a 3D or 2D scene using OpenGL. The library also provides you other useful features such as:
* Support for multiple windows rendering on up to 10 different windows.
* Automatic import of entry points of all OpenGL core functions, from version 1.2 up to the current implementation version of your system.
* Utility functions to handle OpenGL extensions.
GLFW has been designed to be easy to use, and it is provided with a detailed documentation written in Compiled HTML format (CHM). This documentation provides the reference to all the \c glfwXXX() routines, and a programming guide which explains how to use the library. I've also added some sample application code that can be found into the \Examples directory.