mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 05:41:58 +00:00
Fix win32k build
svn path=/branches/ros-amd64-bringup/; revision=45126
This commit is contained in:
parent
682ff1ba02
commit
dccc119ded
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -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_);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue