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