Added setting of cursor postition to MSG_PostToQueue.

This commit is contained in:
Sheri Steeves 2000-06-15 00:09:04 +00:00 committed by Alexandre Julliard
parent 41b07fb4d9
commit bd59d233f4

View File

@ -1558,8 +1558,7 @@ static BOOL MSG_PostToQueue( HQUEUE16 hQueue, int type, HWND hwnd,
msg.wParam = wParam;
msg.lParam = lParam;
msg.time = GetTickCount();
msg.pt.x = 0;
msg.pt.y = 0;
GetCursorPos(&msg.pt);
return QUEUE_AddMsg( hQueue, type, &msg, 0 );
}