示例#1
0
// InChar returns the character at the current position in the curses window
func (w *Window) InChar() Char {
	return Char(C.winch(w.win))
}
示例#2
0
文件: window.go 项目: zyxar/gocurse
func (win *Window) Inch() chtype {
	return chtype(C.winch((*C.WINDOW)(win)))
}