http://bugs.winehq.org/show_bug.cgi?id=23031
Summary: BUg Product: Wine Version: 1.1.42 Platform: x86 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown AssignedTo: wine-bugs@winehq.org ReportedBy: xiecheng@box.az CC: xiecheng@box.az
Hi. MY english is very low. I was wroted mouseclicker program in c++. This program worked on Windows XP very well. But I want to start my console application in ubuntu with wine but I find bug. BUg is that: - Mouse cursor not moved! - Mouse cursor not clicked(Clicker only worked program self window! This is not needed program)!
This is application code: ************************* #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);//5 second sleep mouse_event(MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_LEFTUP, x, y, 5, 10); //MOve cursor and Click } system("PAUSE"); return EXIT_SUCCESS; } ************************ Good days.
DEar moderator(`s) please no close this message. Because this is really bug wine!