better name for key up/down function

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1507 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
dcnieho 2013-02-26 15:21:34 +00:00
parent a6e021db4a
commit fdbb8086ed

View File

@ -170,7 +170,7 @@ static int fgPlatformGetModifiers (void)
( GetKeyState( VK_RMENU ) < 0 )) ? GLUT_ACTIVE_ALT : 0 ); ( GetKeyState( VK_RMENU ) < 0 )) ? GLUT_ACTIVE_ALT : 0 );
} }
static LRESULT fghKeyPress(SFG_Window *window, UINT uMsg, GLboolean keydown, WPARAM wParam, LPARAM lParam) static LRESULT fghWindowProcKeyPress(SFG_Window *window, UINT uMsg, GLboolean keydown, WPARAM wParam, LPARAM lParam)
{ {
static unsigned char lControl = 0, lShift = 0, lAlt = 0, static unsigned char lControl = 0, lShift = 0, lAlt = 0,
rControl = 0, rShift = 0, rAlt = 0; rControl = 0, rShift = 0, rAlt = 0;
@ -793,14 +793,14 @@ LRESULT CALLBACK fgPlatformWindowProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPAR
case WM_KEYDOWN: case WM_KEYDOWN:
if (child_window) if (child_window)
window = child_window; window = child_window;
lRet = fghKeyPress(window,uMsg,GL_TRUE,wParam,lParam); lRet = fghWindowProcKeyPress(window,uMsg,GL_TRUE,wParam,lParam);
break; break;
case WM_SYSKEYUP: case WM_SYSKEYUP:
case WM_KEYUP: case WM_KEYUP:
if (child_window) if (child_window)
window = child_window; window = child_window;
lRet = fghKeyPress(window,uMsg,GL_FALSE,wParam,lParam); lRet = fghWindowProcKeyPress(window,uMsg,GL_FALSE,wParam,lParam);
break; break;
case WM_SYSCHAR: case WM_SYSCHAR: