glfwGetKeyName(int key) - Added stub methods for X11 and Cocoa

This commit is contained in:
Doug Binks 2013-08-14 14:41:39 +02:00
parent f4ed02f6c8
commit 6edcc75a6b
2 changed files with 10 additions and 0 deletions

View File

@ -1094,6 +1094,11 @@ void _glfwPlatformSetCursorMode(_GLFWwindow* window, int mode)
}
}
const char*_glfwPlatformGetKeyName(int key)
{
// TODO: Implement.
return NULL;
}
//////////////////////////////////////////////////////////////////////////
////// GLFW native API //////

View File

@ -1163,6 +1163,11 @@ void _glfwPlatformSetCursorMode(_GLFWwindow* window, int mode)
}
}
const char*_glfwPlatformGetKeyName(int key)
{
// TODO: Implement.
return NULL;
}
//////////////////////////////////////////////////////////////////////////
////// GLFW native API //////