func (this *Rect) IsPointIn(x, y int) bool { return w32.PtInRect(&this.rect, x, y) }
func (r *Rect) IsPointIn(x, y int) bool { return w32.PtInRect((*w32.RECT)(r), x, y) }