コード例 #1
0
ファイル: curses.go プロジェクト: tncardoso/gocurses
func (window *Window) Setscrreg(top, bot int) {
	C.wsetscrreg(window.cwin, C.int(top), C.int(bot))
}
コード例 #2
0
ファイル: curses.go プロジェクト: gcatlin/gocurses
func (win *Window) Setscrreg(top, bot int) {
	C.wsetscrreg((*C.WINDOW)(win), C.int(top), C.int(bot))
}