Fix win32k build

svn path=/branches/ros-amd64-bringup/; revision=45126
This commit is contained in:
Samuel Serapion 2010-01-17 22:02:50 +00:00
parent 682ff1ba02
commit dccc119ded
2 changed files with 3 additions and 3 deletions

View file

@ -188,7 +188,7 @@ co_IntSendMessageTimeout(HWND hWnd,
LRESULT FASTCALL
IntDispatchMessage(MSG* Msg);
BOOL FASTCALL
IntTranslateKbdMessage(LPMSG lpMsg, HKL dwhkl);
IntTranslateKbdMessage(LPMSG lpMsg, UINT flags);
VOID FASTCALL
co_MsqPostKeyboardMessage(UINT uMsg, WPARAM wParam, LPARAM lParam);

View file

@ -2283,7 +2283,7 @@ NtUserDispatchMessage(PMSG UnsafeMsgInfo)
BOOL APIENTRY
NtUserTranslateMessage(LPMSG lpMsg,
HKL dwhkl)
UINT flags)
{
NTSTATUS Status;
MSG SafeMsg;
@ -2299,7 +2299,7 @@ NtUserTranslateMessage(LPMSG lpMsg,
RETURN( FALSE);
}
RETURN( IntTranslateKbdMessage(&SafeMsg, dwhkl));
RETURN( IntTranslateKbdMessage(&SafeMsg, flags));
CLEANUP:
DPRINT("Leave NtUserTranslateMessage: ret=%i\n",_ret_);