From f93801c22109e9ee99f7f8f28ad58dd27fff3f81 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Mon, 27 Sep 2010 02:16:17 +0200 Subject: [PATCH] Added missing declaration. --- src/internal.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/internal.h b/src/internal.h index d33b94f2..cc1714f9 100644 --- a/src/internal.h +++ b/src/internal.h @@ -299,6 +299,7 @@ void _glfwClearWindowHints(void); // Input handling (window.c) void _glfwInputKey(_GLFWwindow* window, int key, int action); void _glfwInputChar(_GLFWwindow* window, int character); +void _glfwInputScroll(_GLFWwindow* window, int x, int y); void _glfwInputMouseClick(_GLFWwindow* window, int button, int action); void _glfwInputWindowFocus(_GLFWwindow* window, GLboolean activated);