1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 15:17:25 -04:00

Made file-local functions static.

This commit is contained in:
Camilla Berglund 2011-03-04 14:52:12 +01:00
parent ed336b210c
commit 9d6660a9ea

View File

@ -74,7 +74,7 @@ static void closeFlaggedWindows(void)
// Clear scroll offsets for all windows // Clear scroll offsets for all windows
//======================================================================== //========================================================================
void clearScrollOffsets(void) static void clearScrollOffsets(void)
{ {
_GLFWwindow* window; _GLFWwindow* window;
@ -90,7 +90,7 @@ void clearScrollOffsets(void)
// Clear all input state // Clear all input state
//======================================================================== //========================================================================
void clearInputState(_GLFWwindow* window) static void clearInputState(_GLFWwindow* window)
{ {
int i; int i;