Win32: Made the window message proc static

This commit is contained in:
Elias Naur 2006-02-22 10:30:35 +00:00
parent 2ba1f053f9
commit 2bc1b89772
2 changed files with 3 additions and 2 deletions

View file

@ -120,10 +120,11 @@ JNIEXPORT jboolean JNICALL Java_org_lwjgl_opengl_Win32Display_didMaximize
did_maximize = false;
return result;
}
/*
* WindowProc for the GL window.
*/
LRESULT CALLBACK lwjglWindowProc(HWND hWnd,
static LRESULT CALLBACK lwjglWindowProc(HWND hWnd,
UINT msg,
WPARAM wParam,
LPARAM lParam)