[Bug 23067] New: Can't move and click mouse with program

wine-bugs at winehq.org wine-bugs at winehq.org
Mon Jun 7 00:17:32 CDT 2010


http://bugs.winehq.org/show_bug.cgi?id=23067

           Summary: Can't move and click mouse with program
           Product: Wine
           Version: 1.1.42
          Platform: x86
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: -unknown
        AssignedTo: wine-bugs at winehq.org
        ReportedBy: xiecheng at box.az
                CC: xiecheng at box.az


Created an attachment (id=28633)
 --> (http://bugs.winehq.org/attachment.cgi?id=28633)
This program work is wait , move mouse and click mouse left button

Hi I find bug in Wine.
I downloaded many programs and tested all Window XP programs 
not working move mouse and click mouse button.
I wroted simple program.
But my application too does not working.
I wroted this program on Window XP but all well worked.
I think so this is Wine Bug.

I adding the link I downloaded and tested program`s:
http://www.brothersoft.com/automouseclicker-download-25176.html
http://www.topshareware.com/Standard-Mouse-Auto-Clicker-download-76910.htm
vs ...

I added my wroted application.
THis is my application source codes:

#include <windows.h>
#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
    int i , x, y;
    for(i=0;i<50;i++){
        Sleep(5000);//wait 5 second
        mouse_event(MOUSEEVENTF_LEFTDOWN , x, y, 50, 80);
        //MOve cursor and left down
        printf("Left down - ");
        Sleep(1000);//wait 1 second
        mouse_event(MOUSEEVENTF_LEFTUP, x, y, 32, 30);
        printf("Left up | \n");
        }
    system("PAUSE");
    return EXIT_SUCCESS;
}

-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
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