Add prototypes to glfw3.h

This commit is contained in:
Nathan Poirier 2018-12-14 05:22:33 +01:00
parent b252eab235
commit b51f5df076
No known key found for this signature in database
GPG Key ID: 94C1CE923BD6A70C

View File

@ -3415,6 +3415,21 @@ GLFWAPI void glfwSetWindowUserPointer(GLFWwindow* window, void* pointer);
*/ */
GLFWAPI void* glfwGetWindowUserPointer(GLFWwindow* window); GLFWAPI void* glfwGetWindowUserPointer(GLFWwindow* window);
/*!
* TODO
*/
GLFWAPI int glfwGetWindowUseRawInput(GLFWwindow* handle);
/*!
* TODO
*/
GLFWAPI void glfwSetWindowUseRawInput(GLFWwindow* handle, int value);
/*!
* TODO
*/
GLFWAPI int glfwRawInputSupported(void);
/*! @brief Sets the position callback for the specified window. /*! @brief Sets the position callback for the specified window.
* *
* This function sets the position callback of the specified window, which is * This function sets the position callback of the specified window, which is