Rename glfwGetCocoaOpenedFilenames() to glfwGetOpenedFilenames()

This commit is contained in:
Andrew Belt 2019-10-14 00:26:17 -04:00
parent ccd95a8948
commit 0fb001cf43
2 changed files with 2 additions and 2 deletions

View File

@ -228,7 +228,7 @@ GLFWAPI id glfwGetCocoaWindow(GLFWwindow* window);
*
* @ingroup native
*/
const char* const* glfwGetCocoaOpenedFilenames(void);
const char* const* glfwGetOpenedFilenames(void);
#endif
#if defined(GLFW_EXPOSE_NATIVE_NSGL)

View File

@ -623,7 +623,7 @@ const char* _glfwPlatformGetVersionString(void)
////// GLFW native API //////
//////////////////////////////////////////////////////////////////////////
const char* const* glfwGetCocoaOpenedFilenames(void)
const char* const* glfwGetOpenedFilenames(void)
{
return (const char* const*) _glfw.ns.openedFilenames;
}