Example #1
0
    // Token: 0x060000DD RID: 221 RVA: 0x00010634 File Offset: 0x0000E834
    public static void PostClickRU(int x, int y)
    {
        BrowserVNC.RECT rect = default(BrowserVNC.RECT);
        BrowserVNC.GetWindowRect(BrowserVNC.foundhandle, ref rect);
        Point point = new Point(10000 + x - rect.Left, 10000 + y - rect.Top);

        BrowserVNC.PostMessage(BrowserVNC.foundhandle, 517u, (IntPtr)0L, (IntPtr)BrowserVNC.MakeLParam(x - rect.Left, y - rect.Top));
    }
Example #2
0
 private static extern bool GetWindowRect(IntPtr hWnd, ref BrowserVNC.RECT lpRect);