From 3bfa294347288907ac254c08b73f45e6566dd3da Mon Sep 17 00:00:00 2001 From: hypatia-of-sva <121448956+hypatia-of-sva@users.noreply.github.com> Date: Sat, 20 Apr 2024 16:54:13 +0200 Subject: [PATCH] added missing GLFWAPI for glfwDefaultHints() --- src/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.c b/src/window.c index e03121a4..0be6e0a1 100644 --- a/src/window.c +++ b/src/window.c @@ -253,7 +253,7 @@ GLFWAPI GLFWwindow* glfwCreateWindow(int width, int height, return (GLFWwindow*) window; } -void glfwDefaultWindowHints(void) +GLFWAPI void glfwDefaultWindowHints(void) { _GLFW_REQUIRE_INIT();