mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-25 08:39:18 -05:00
Add _glfwConnectNull() function to rglfw.c
This commit is contained in:
@ -69,6 +69,15 @@
|
|||||||
#define _WIN32_WINNT_WINXP 0x0501
|
#define _WIN32_WINNT_WINXP 0x0501
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "external/glfw/src/internal.h"
|
||||||
|
|
||||||
|
// We do not use GLFW's "null" platform, but the absence of this function
|
||||||
|
// causes the build to fail
|
||||||
|
GLFWbool _glfwConnectNull(int platformID, _GLFWplatform* platform)
|
||||||
|
{
|
||||||
|
return GLFW_TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
// Common modules to all platforms
|
// Common modules to all platforms
|
||||||
#include "external/glfw/src/init.c"
|
#include "external/glfw/src/init.c"
|
||||||
#include "external/glfw/src/platform.c"
|
#include "external/glfw/src/platform.c"
|
||||||
|
|||||||
Reference in New Issue
Block a user