Tao.Glfw SDK Documentation

Glfw.glfwGetVersion Method 

Returns the GLFW library version.

[Visual Basic]
Public Shared Sub glfwGetVersion( _
   ByRef major As Integer, _
   ByRef minor As Integer, _
   ByRef revision As Integer _
)
[C#]
public static void glfwGetVersion(
   out int major,
   out int minor,
   out int revision
);

Parameters

major
Pointer to an integer that will hold the major version number.
minor
Pointer to an integer that will hold the minor version number.
revision
Pointer to an integer that will hold the revision.

See Also

Glfw Class | Tao.Glfw Namespace