[Bug 40988] mouse_event doesn't work

wine-bugs at winehq.org wine-bugs at winehq.org
Wed Jul 20 11:45:02 CDT 2016


https://bugs.winehq.org/show_bug.cgi?id=40988

--- Comment #1 from proggi <proggi at yandex.ru> ---
SendInput also doesn't work

  var
    TI : TInput;
  begin
    TI.Itype := 0;
    TI.mi.dx := 10000;
    TI.mi.dy := 10000;
    TI.mi.mouseData := 0;
    TI.mi.time := 0;
    TI.mi.dwFlags := MOUSEEVENTF_MOVE+MOUSEEVENTF_ABSOLUTE;
    SendInput(1, TI, sizeof(TI));
    TI.mi.dwFlags := MOUSEEVENTF_LEFTDOWN;
    SendInput(1, TI, sizeof(TI));
    TI.mi.dwFlags := MOUSEEVENTF_LEFTUP;
    SendInput(1, TI, sizeof(TI));
  end;

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list