//枚举窗体
BOOL EnumWindows(
    WNDENUMPROC lpEnumFunc, // pointer to callback function
    LPARAM lParam  // application-defined value
   );//设置鼠标位置
BOOL SetCursorPos(    int X, // horizontal position  
    int Y  // vertical position
   );
 
//工作窗体
HWND GetDesktopWindow(VOID)