예제 #1
0
파일: rect.go 프로젝트: foxundermoon/gform
func (this *Rect) Set(left, top, right, bottom int) {
	w32.SetRect(&this.rect, left, top, right, bottom)
}
예제 #2
0
파일: rect.go 프로젝트: daviddengcn/gform
func (r *Rect) Set(left, top, right, bottom int) {
	w32.SetRect((*w32.RECT)(r), left, top, right, bottom)
}