[DllImport("user32.dll")]
public extern static bool GetUpdateRect(IntPtr hWnd, ref RECT rect, bool bErase);
<DllImport("user32.dll")> _
Private Shared Function GetUpdateRect(ByVal hWnd As IntPtr, ByRef rect As RECT, ByVal bErase As Boolean) As Boolean
End Function
None.
Please add some!
VB.NET :
Dim rRect As New RECT
Dim bErase As Boolean
GetUpdateRect(Me.Handle, rRect, bErase)
Do you know one? Please contribute it!