mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 14:27:27 +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
|
LRESULT FASTCALL
|
||||||
IntDispatchMessage(MSG* Msg);
|
IntDispatchMessage(MSG* Msg);
|
||||||
BOOL FASTCALL
|
BOOL FASTCALL
|
||||||
IntTranslateKbdMessage(LPMSG lpMsg, HKL dwhkl);
|
IntTranslateKbdMessage(LPMSG lpMsg, UINT flags);
|
||||||
|
|
||||||
VOID FASTCALL
|
VOID FASTCALL
|
||||||
co_MsqPostKeyboardMessage(UINT uMsg, WPARAM wParam, LPARAM lParam);
|
co_MsqPostKeyboardMessage(UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||||
|
|
|
@ -2283,7 +2283,7 @@ NtUserDispatchMessage(PMSG UnsafeMsgInfo)
|
||||||
|
|
||||||
BOOL APIENTRY
|
BOOL APIENTRY
|
||||||
NtUserTranslateMessage(LPMSG lpMsg,
|
NtUserTranslateMessage(LPMSG lpMsg,
|
||||||
HKL dwhkl)
|
UINT flags)
|
||||||
{
|
{
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
MSG SafeMsg;
|
MSG SafeMsg;
|
||||||
|
@ -2299,7 +2299,7 @@ NtUserTranslateMessage(LPMSG lpMsg,
|
||||||
RETURN( FALSE);
|
RETURN( FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
RETURN( IntTranslateKbdMessage(&SafeMsg, dwhkl));
|
RETURN( IntTranslateKbdMessage(&SafeMsg, flags));
|
||||||
|
|
||||||
CLEANUP:
|
CLEANUP:
|
||||||
DPRINT("Leave NtUserTranslateMessage: ret=%i\n",_ret_);
|
DPRINT("Leave NtUserTranslateMessage: ret=%i\n",_ret_);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue