public ProcStructs.WINDOWINFO GetWindowInfo1(IntPtr hWnd) { ProcStructs.WINDOWINFO wInfo = new ProcStructs.WINDOWINFO(); wInfo.cbSize = (uint)Marshal.SizeOf(wInfo); WinAPIs.GetWindowInfo(hWnd, ref wInfo); return(wInfo); }
public static extern bool GetWindowInfo(IntPtr hwnd, ref ProcStructs.WINDOWINFO pwi);