Added glfwGetVersionString.

This commit is contained in:
Camilla Berglund
2010-09-13 18:05:59 +02:00
parent 3c2a89e5e8
commit d6fe447ca9
6 changed files with 47 additions and 3 deletions
+10
View File
@@ -97,3 +97,13 @@ GLFWAPI void glfwGetVersion(int* major, int* minor, int* rev)
*rev = GLFW_VERSION_REVISION;
}
//========================================================================
// Get the GLFW version string
//========================================================================
GLFWAPI const char* glfwGetVersionString(void)
{
return _glfwPlatformGetVersionString();
}