http://bugs.winehq.org/show_bug.cgi?id=23027
--- Comment #2 from Kenan xiecheng@box.az 2010-06-04 06:39:46 --- NO no
All my application code that is: #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; }