From 7d9b5c012702a53c55b40f89a950fb85eeb82a88 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Sun, 2 Dec 2012 16:55:09 +0100 Subject: [PATCH] Added documentation for glfwGetJoystickName. --- include/GL/glfw3.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/GL/glfw3.h b/include/GL/glfw3.h index ade6d9e5..966234d7 100644 --- a/include/GL/glfw3.h +++ b/include/GL/glfw3.h @@ -1534,6 +1534,13 @@ GLFWAPI int glfwGetJoystickAxes(int joy, float* axes, int numaxes); * @ingroup input */ GLFWAPI int glfwGetJoystickButtons(int joy, unsigned char* buttons, int numbuttons); + +/*! @brief Returns the name of the specified joystick. + * @param[in] joy The joystick to query. + * @return The UTF-8 encoded name of the joystick, or @c NULL if the joystick + * is not present. + * @ingroup input + */ GLFWAPI const char* glfwGetJoystickName(int joy); /*! @brief Sets the clipboard to the specified string.