Exemplo n.º 1
0
 static extern bool GetWindowRect(IntPtr hwnd, out Engine.RECT lpRect);
Exemplo n.º 2
0
 public static Engine.RECT GetWindowRect(IntPtr hWnd)
 {
     Engine.RECT result = new Engine.RECT();
     GetWindowRect(hWnd, out result);
     return(result);
 }