From 27474060e1287a67c45cd790d29b9095b35b2bdf Mon Sep 17 00:00:00 2001 From: ShizZy Date: Thu, 29 Aug 2013 23:35:09 -0400 Subject: adding initial project layout --- externals/glfw-3.0.2/docs/html/group__error.html | 166 +++++++++++++++++++++++ 1 file changed, 166 insertions(+) create mode 100644 externals/glfw-3.0.2/docs/html/group__error.html (limited to 'externals/glfw-3.0.2/docs/html/group__error.html') diff --git a/externals/glfw-3.0.2/docs/html/group__error.html b/externals/glfw-3.0.2/docs/html/group__error.html new file mode 100644 index 00000000..d0734d4f --- /dev/null +++ b/externals/glfw-3.0.2/docs/html/group__error.html @@ -0,0 +1,166 @@ + + + + + + +GLFW: Error handling + + + + + + + + + +
+
+ + + + + + +
+
GLFW +  3.0.2 +
+
A multi-platform library for OpenGL, window and input
+
+
+ + + + +
+ +
+ All Data Structures Files Functions Variables Typedefs Macros Groups Pages
+ + +
+ +
+ +
+ +
+
Error handling
+
+
+ + + + +

+Modules

 Error codes
 
+ + + + +

+Typedefs

typedef void(* GLFWerrorfun )(int, const char *)
 The function signature for error callbacks. More...
 
+ + + + +

+Functions

GLFWerrorfun glfwSetErrorCallback (GLFWerrorfun cbfun)
 Sets the error callback. More...
 
+

Detailed Description

+

Typedef Documentation

+ +
+
+ + + + +
typedef void(* GLFWerrorfun)(int, const char *)
+
+

This is the function signature for error callback functions.

+
Parameters
+ + + +
[in]errorAn error code.
[in]descriptionA UTF-8 encoded string describing the error.
+
+
+
See Also
glfwSetErrorCallback
+ +
+
+

Function Documentation

+ +
+
+ + + + + + + + +
GLFWerrorfun glfwSetErrorCallback (GLFWerrorfun cbfun)
+
+

This function sets the error callback, which is called with an error code and a human-readable description each time a GLFW error occurs.

+
Parameters
+ + +
[in]cbfunThe new callback, or NULL to remove the currently set callback.
+
+
+
Returns
The previously set callback, or NULL if no callback was set or an error occurred.
+
Remarks
This function may be called before glfwInit.
+
Note
The error callback is called by the thread where the error was generated. If you are using GLFW from multiple threads, your error callback needs to be written accordingly.
+
+Because the description string provided to the callback may have been generated specifically for that error, it is not guaranteed to be valid after the callback has returned. If you wish to use it after that, you need to make your own copy of it before returning.
+ +
+
+
+ + + + -- cgit v1.2.3